-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
27 lines (27 loc) · 803 Bytes
/
Copy pathrender.yaml
File metadata and controls
27 lines (27 loc) · 803 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
# Render Blueprint — deploy the NestJS backend
services:
- type: web
name: rankforge-api
runtime: node
plan: free
buildCommand: "chmod +x apps/api/render-build.sh && bash apps/api/render-build.sh"
startCommand: "cd apps/api && node dist/main.js"
envVars:
- key: NODE_ENV
value: production
- key: DATABASE_URL
sync: false # Set manually from Neon
- key: REDIS_HOST
sync: false # Set manually from Upstash
- key: REDIS_PORT
sync: false
- key: REDIS_PASSWORD
sync: false
- key: JWT_ACCESS_SECRET
generateValue: true
- key: JWT_REFRESH_SECRET
generateValue: true
- key: CORS_ORIGIN
sync: false # Set to your Vercel URL
- key: API_PORT
value: "10000"