d5377e94eb
Django backend that listens to the relay SSE global stream and dispatches APNs push notifications to subscribed iOS devices (TestFlight/sandbox).
12 lines
265 B
Bash
Executable File
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
|