7 lines
192 B
Bash
Executable File
7 lines
192 B
Bash
Executable File
# 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 |