agenda_culturel/deployment/scripts/backend/start.sh
2023-05-10 09:11:23 +02:00

14 lines
460 B
Bash

#!/bin/bash
# Run migrations, collect static files and start server
if [ "$APP_ENV" != "prod" ]; then
python manage.py makemigrations --noinput
python manage.py migrate --noinput
else
python manage.py makemigrations --noinput
python manage.py migrate --noinput
python manage.py collectstatic --noinput
fi
gunicorn "$APP_NAME".wsgi:application --bind "$APP_HOST":"$APP_PORT" --workers 3 --timeout 60 --graceful-timeout 60 --log-level=info