1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 04:53:03 +00:00
plateforme-tfjm2/entrypoint.sh

14 lines
321 B
Bash
Executable File

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