1
0
Fork 0
mirror of https://github.com/seanmorley15/AdventureLog.git synced 2025-08-05 13:15:18 +02:00

Allow the poststart.sh script to quit and redirect outputs to log files in /tmp

This commit is contained in:
lesensei 2025-05-04 12:27:54 +00:00
parent 55125c445f
commit 2aa44a7104

View file

@ -63,9 +63,9 @@ if [ $? -eq 137 ]; then
fi
# Run backend in dev mode
python manage.py runserver &
python manage.py runserver 2>&1 | tee -a /tmp/servers.log >> /tmp/backend.log 2&>1 &
cd ../../frontend
# Run frontend in dev mode
npm run dev
npm run dev 2>&1 | tee -a /tmp/servers.log >> /tmp/frontend.log 2&>1 &