Files
Reskreen/startup.sh
2024-04-12 18:38:47 +02:00

7 lines
187 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 manage.py runserver 0.0.0.0:8080