1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-23 01:58:24 +02:00

Clone Corres2math platform

This commit is contained in:
Yohann D'ANELLO
2020-12-27 11:49:54 +01:00
parent 3d9bd88a41
commit 03eca29316
151 changed files with 10032 additions and 0 deletions

14
entrypoint.sh Executable file
View File

@ -0,0 +1,14 @@
#!/bin/sh
crond -l 0
python manage.py migrate
python manage.py loaddata initial
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
python manage.py runserver 0.0.0.0:8000;
fi