Learning-Management-System/compose/local/django/start
2025-01-11 12:11:18 +00:00

9 lines
175 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'