-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
28 lines (28 loc) · 730 Bytes
/
render.yaml
File metadata and controls
28 lines (28 loc) · 730 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
services:
# Backend Node.js Service
- type: web
name: relief-route-server
env: node
rootDir: server
buildCommand: npm install && npx tsc -p server/tsconfig.json
startCommand: node server/dist/index.js
disk:
name: sqlite-data
mountPath: /data
sizeGB: 1
envVars:
- key: DB_PATH
value: /data/data.db
- key: NODE_ENV
value: production
- key: PORT
value: "3001"
# You will need to add these secret environment variables in the Render dashboard
- key: ANTHROPIC_API_KEY
sync: false
- key: GEMINI_API_KEY
sync: false
- key: JWT_SECRET
sync: false
- key: GOOGLE_CLIENT_ID
sync: false