Spaces:
Sleeping
Sleeping
File size: 166 Bytes
1201570 |
1 2 3 4 5 6 7 8 |
#!/bin/bash
cd backend
# Start FastAPI app in the background on port 8000
uvicorn app:app --host 0.0.0.0 --port 8000 --reload &
# Start Nginx
nginx -g 'daemon off;' |