render.yaml (505B)
1 services: 2 - type: web 3 name: ada-web-backend 4 env: python 5 region: oregon 6 plan: free 7 branch: main 8 buildCommand: pip install -r requirements.txt 9 startCommand: gunicorn backend:app --workers 2 --threads 2 --timeout 120 --bind 0.0.0.0:$PORT 10 envVars: 11 - key: PYTHON_VERSION 12 value: 3.11.0 13 - key: GEMINI_API_KEY 14 sync: false 15 - key: FIREBASE_CREDENTIALS 16 sync: false 17 - key: FLASK_DEBUG 18 value: False 19 healthCheckPath: /health