#!/bin/bash

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


python /app/manage.py collectstatic --noinput

# Start Daphne (ASGI) instead of Gunicorn (WSGI) to support WebSockets
exec daphne -b 0.0.0.0 -p 5000 config.asgi:application
