akarpov/compose/production/django/start

17 lines
319 B
Plaintext
Raw Normal View History

2022-11-23 11:41:43 +03:00
#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset
2022-12-06 12:03:58 +03:00
mkdir /app/staticfiles/
chmod -R +r /app/staticfiles/
2022-11-23 11:41:43 +03:00
python /app/manage.py collectstatic --noinput
2022-12-06 12:03:58 +03:00
python /app/manage.py makemigrations
python /app/manage.py migrate auth
python /app/manage.py migrate
2022-11-23 11:41:43 +03:00
2023-09-08 12:17:46 +03:00
gunicorn config.wsgi --bind 0.0.0.0:5000 --chdir=/app