diff --git a/startup.sh b/startup.sh new file mode 100644 index 0000000..b45303e --- /dev/null +++ b/startup.sh @@ -0,0 +1,7 @@ +# 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 \ No newline at end of file