11 lines
275 B
Bash
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
|