#!/bin/bash

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

# Skip collectstatic when not using AWS
echo "Skipping collectstatic (USE_AWS=false)"

daphne -b 0.0.0.0 -p 5000 --websocket_timeout $DJANGO_WORKER_TIMEOUT config.asgi:application
