File size: 531 Bytes
4254f01 637183f 4254f01 637183f 4254f01 637183f 4254f01 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | services:
- type: web
name: hf-viz-backend
env: python
buildCommand: pip install -r requirements.txt
startCommand: cd backend && uvicorn api.main:app --host 0.0.0.0 --port $PORT
envVars:
- key: PORT
value: 8000
- key: SAMPLE_SIZE
value: 5000
- key: FRONTEND_URL
sync: false # Set this to your Netlify frontend URL
plan: starter # Adjust based on your needs (starter, standard, pro)
region: oregon # Choose your preferred region
healthCheckPath: /docs
|