-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
33 lines (33 loc) · 955 Bytes
/
Copy pathrender.yaml
File metadata and controls
33 lines (33 loc) · 955 Bytes
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
26
27
28
29
30
31
32
33
services:
- type: web
name: adhs-backend
env: node
rootDir: backend
plan: free
autoDeploy: true
buildCommand: npm ci --include=dev && npm run build
startCommand: npm run start
healthCheckPath: /api/health
envVars:
- key: NODE_ENV
value: production
- key: NODE_VERSION
value: "20"
# LLM config - set in Render Dashboard or via blueprint sync
- key: LLM_PROVIDER
sync: false
- key: LLM_MODEL
sync: false
# API keys (set securely in Render Dashboard)
- key: OPENAI_API_KEY
sync: false
- key: ANTHROPIC_API_KEY
sync: false
# Skip downloading Chromium since Puppeteer isn't needed at build time
- key: PUPPETEER_SKIP_DOWNLOAD
value: "true"
# Rate limiting defaults (optional overrides)
- key: RATE_LIMIT_MAX_REQUESTS
value: "10"
- key: RATE_LIMIT_WINDOW_MS
value: "60000"