#!/bin/bash set -e echo "Starting development server..." uvicorn app.asgi:app --host 0.0.0.0 --port 8000 --reload