SillyTavern/docker/docker-entrypoint.sh

29 lines
818 B
Bash
Raw Normal View History

2023-07-20 19:32:15 +02:00
#!/bin/sh
# Initialize missing user files
2023-07-23 15:52:25 +02:00
IFS="," RESOURCES="characters,groups,group chats,chats,User Avatars,worlds"
2023-07-20 19:32:15 +02:00
for R in $RESOURCES; do
if [ ! -e "config/$R" ]; then
echo "Resource not found, copying from defaults: $R"
cp -r "public/$R.default" "config/$R"
fi
done
2023-07-23 15:52:25 +02:00
if [ ! -e "config/config.conf" ]; then
echo "Resource not found, copying from defaults: config.conf"
cp -r "default/config.conf" "config/config.conf"
fi
if [ ! -e "config/settings.json" ]; then
echo "Resource not found, copying from defaults: settings.json"
cp -r "default/settings.json" "config/settings.json"
fi
if [ ! -e "config/bg_load.css" ]; then
echo "Resource not found, copying from defaults: bg_load.css"
cp -r "default/bg_load.css" "config/bg_load.css"
fi
2023-07-20 19:32:15 +02:00
# Start the server
exec node server.js