Merge branch 'dev' into fix-flags

This commit is contained in:
Thomas Camlong
2023-11-14 21:15:00 +01:00
committed by GitHub

View File

@@ -8,6 +8,9 @@ cd ./migrate; yarn db:migrate & PID=$!
# Wait for migration to finish # Wait for migration to finish
wait $PID wait $PID
## If 'default.json' does not exist in '/app/data/configs', we copy it from '/app/data/default.json'
cp -n /app/data/default.json /app/data/configs/default.json
echo "Starting production server..." echo "Starting production server..."
node /app/server.js & PID=$! node /app/server.js & PID=$!