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
|
2024-12-13 16:45:21 +03:00
|
|
|
python manage.py send_settings
|
2024-12-10 23:31:35 +03:00
|
|
|
python manage.py collectstatic --noinput --verbosity 0
|
|
|
|
gunicorn clicker.wsgi -b 0.0.0.0:8000 -w 17 --timeout 600 --chdir=/app --access-logfile -
|