lglog/entrypoint.sh
2020-11-15 17:05:54 +01:00

12 lines
264 B
Bash
Executable File

#!/bin/sh
python manage.py migrate
nginx
if [ "$DJANGO_STAGE" = "prod" ]; then
gunicorn -b 0.0.0.0:8000 --workers=2 --threads=4 --worker-class=gthread lglog.wsgi --access-logfile '-' --error-logfile '-';
else
python manage.py runserver 0.0.0.0:8000;
fi