7 lines
187 B
Bash
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 |