-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
42 lines (40 loc) · 1023 Bytes
/
render.yaml
File metadata and controls
42 lines (40 loc) · 1023 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
34
35
36
37
38
39
40
41
42
services:
- type: redis
name: collabide-redis
plan: free
region: oregon
maxmemoryPolicy: noeviction
ipAllowList:
- source: 0.0.0.0/0
description: Allow all connections
- type: web
name: collabide-backend
runtime: node
plan: free
region: oregon
buildCommand: npm ci
startCommand: node server/index.js
envVars:
- key: REDIS_URL
fromService:
type: redis
name: collabide-redis
property: connectionString
- key: NODE_ENV
value: production
- key: PORT
value: 3001
- key: CORS_ORIGIN
value: https://collabide-frontend.onrender.com
- type: web
name: collabide-frontend
runtime: node
plan: free
region: oregon
buildCommand: npm ci && npm run build
startCommand: npm run start
envVars:
- key: VITE_API_URL
value: https://collabide-backend.onrender.com
- key: VITE_SOCKET_URL
value: https://collabide-backend.onrender.com