File size: 726 Bytes
cd0c7a9 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | services:
- type: web
name: bio-nexus-api
runtime: python
region: ohio
buildCommand: pip install -r requirements.txt
startCommand: uvicorn app.main:app --host 0.0.0.0 --port $PORT
healthCheckPath: /health
autoDeploy: true
envVars:
- key: SUPABASE_URL
sync: false
- key: SUPABASE_SERVICE_ROLE_KEY
sync: false
- key: GROQ_API_KEY
sync: false
- key: DEMO_MODE
value: "false"
- key: CORS_ORIGIN
value: "https://bio-nexus-samadsaifi14s-projects.vercel.app,https://bio-nexus.vercel.app,https://bioai-platform.vercel.app"
- key: NCBI_API_KEY
sync: false
- key: NCBI_EMAIL
value: "bioflow@example.com"
|