Spaces:
Sleeping
Sleeping
File size: 175 Bytes
604e0d1 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
# Run backend (FastAPI via Uvicorn) in background
uvicorn backend.app_v2:app --host 0.0.0.0 --port 8000 &
# Start Nginx to serve frontend
nginx -g "daemon off;"
|