db_kyc_project/backend/scripts/gunicorn.sh
Даня Вакуленков 4a18a785e9 Add backend code
2024-12-10 23:31:35 +03:00

10 lines
238 B
Bash

#!/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 -