db_kyc_project/backend/scripts/gunicorn.sh

10 lines
238 B
Bash
Raw Normal View History

2024-12-10 23:31:35 +03:00
#!/usr/bin/env bash
set -o errexit
set -o pipefail
set -o nounset
python manage.py migrate
python manage.py collectstatic --noinput --verbosity 0
gunicorn clicker.wsgi -b 0.0.0.0:8000 -w 17 --timeout 600 --chdir=/app --access-logfile -