Spaces:
Running
Running
File size: 148 Bytes
18d335e | 1 2 3 4 5 6 7 | #!/bin/bash
set -e
# Start the FastAPI server (serves both API and static frontend)
cd /app
exec uvicorn server.app:app --host 0.0.0.0 --port 7860
|