-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
23 lines (23 loc) · 820 Bytes
/
render.yaml
File metadata and controls
23 lines (23 loc) · 820 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
services:
- type: web
name: hcp-engagement-api
env: python
region: oregon
plan: free
buildCommand: pip install --upgrade pip setuptools wheel && pip install -r requirements.txt
startCommand: gunicorn app:app --bind 0.0.0.0:$PORT --workers 2 --timeout 120
healthCheckPath: /health
envVars:
- key: PYTHON_VERSION
value: 3.11.10
- key: FLASK_ENV
value: production
- key: SECRET_KEY
generateValue: true
- key: JWT_SECRET_KEY
generateValue: true
- key: GROQ_API_KEY
sync: false # This needs to be set manually in Render dashboard
- key: REDIS_URL
value: redis://localhost:6379/0 # Will be updated if Redis is added
autoDeploy: false # Disabled - using scheduled GitHub Actions deployments (2x daily)