mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-26 17:00:17 +01:00
13 lines
318 B
Bash
13 lines
318 B
Bash
#!/bin/sh
|
|
|
|
if [ ! -e "config/config.yaml" ]; then
|
|
echo "Resource not found, copying from defaults: config.yaml"
|
|
cp -r "default/config.yaml" "config/config.yaml"
|
|
fi
|
|
|
|
# Execute postinstall to auto-populate config.yaml with missing values
|
|
npm run postinstall
|
|
|
|
# Start the server
|
|
exec node server.js --listen "$@"
|