#!/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' --reload-exclude './chat_all_the_docs/media/*'
