Files
Reskreen/startup.sh
2024-04-12 18:49:42 +02:00

7 lines
192 B
Bash

# startup.sh
# make sure errors stop execution
set -e
# start the cronjob
crond -f -l 8 &
# start nextjs using our own command from package.json...
python /app/manage.py runserver 0.0.0.0:8080