9 lines
173 B
Bash
9 lines
173 B
Bash
#!/bin/bash
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o nounset
|
|
|
|
|
|
python manage.py migrate
|
|
exec uvicorn config.asgi:application --host 0.0.0.0 --reload --reload-include '*.html'
|