1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2024-11-26 13:27:09 +00:00
plateforme-tfjm2/entrypoint.sh
Emmy D'Anello 4ff9f44eae
Don't need to rebuild the ES index periodically, do it only once
Signed-off-by: Emmy D'Anello <emmy.danello@animath.fr>
2024-01-13 19:31:15 +01:00

29 lines
593 B
Bash
Executable File

#!/bin/sh
crond -l 0
python manage.py migrate
python manage.py loaddata initial
python manage.py update_index
nginx
if [ "$TFJM_STAGE" = "prod" ]; then
gunicorn -b 0.0.0.0:8000 \
--workers=2 \
--threads=4 \
--worker-class=uvicorn.workers.UvicornWorker \
tfjm.asgi \
--access-logfile '-' \
--error-logfile '-'
else
gunicorn -b 0.0.0.0:8000 \
--workers=2 \
--threads=4 \
--worker-class=uvicorn.workers.UvicornWorker \
tfjm.asgi \
--access-logfile '-' \
--error-logfile '-' \
--reload
fi