plateforme-corres2math/entrypoint.sh

15 lines
321 B
Bash
Raw Normal View History

2020-09-20 20:31:37 +00:00
#!/bin/sh
2020-09-22 17:37:37 +00:00
crond -l 0
2020-11-14 22:50:02 +00:00
python manage.py migrate
python manage.py loaddata initial
2020-09-20 20:31:37 +00:00
nginx
if [ "$CORRES2MATH_STAGE" = "prod" ]; then
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread corres2math.wsgi --access-logfile '-' --error-logfile '-';
else
2020-11-14 22:50:02 +00:00
python manage.py runserver 0.0.0.0:8000;
2020-09-20 20:31:37 +00:00
fi