Dynavera/compose/prod/start
2025-12-18 23:36:28 +00:00

11 lines
275 B
Bash

#!/bin/bash
set -o errexit
set -o pipefail
set -o nounset
python manage.py makemigrations
python manage.py migrate
python manage.py loaddata data/site/users.json
python manage.py collectstatic --noinput
exec /usr/local/bin/daphne -b 0.0.0.0 -p 8000 config.asgi:application