#!/bin/bash

set -o errexit
set -o pipefail
set -o nounset


python manage.py migrate
# Use python -m daphne to avoid PATH issues
echo "Starting Daphne..."
exec python -m daphne -b 0.0.0.0 -p 8000 config.asgi:application
