Files
andros d5377e94eb Initial implementation of push notification backend
Django backend that listens to the relay SSE global stream and dispatches
APNs push notifications to subscribed iOS devices (TestFlight/sandbox).
2026-05-19 09:34:46 +02:00

12 lines
265 B
Bash
Executable File

#!/bin/bash
set -e
echo "Running database migrations..."
python manage.py migrate
echo "Checking Django configuration..."
python manage.py check
echo "Starting uvicorn on 0.0.0.0:8000..."
exec uvicorn core.asgi:application --host 0.0.0.0 --port 8000 --workers 4