forked from vrajmevawala/OceanLab_26058
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
51 lines (49 loc) · 1.24 KB
/
Copy pathrender.yaml
File metadata and controls
51 lines (49 loc) · 1.24 KB
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
43
44
45
46
47
48
49
50
51
services:
- type: web
name: codesage-api
env: node
rootDir: .
buildCommand: pnpm install && npx turbo build --filter=@codeopt/api...
startCommand: cd apps/api && pnpm start
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 3001
- key: DATABASE_URL
sync: false
- key: REDIS_URL
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GROQ_API_KEY
sync: false
- type: web
name: codesage-web
env: node
rootDir: .
buildCommand: pnpm install && npx turbo build --filter=codesage...
startCommand: cd apps/web && pnpm start
envVars:
- key: NODE_ENV
value: production
- key: NEXT_PUBLIC_API_URL
fromService:
type: web
name: codesage-api
envVarKey: RENDER_EXTERNAL_URL
- type: worker
name: codesage-worker
env: node
rootDir: .
buildCommand: pnpm install && npx turbo build --filter=@codeopt/worker...
startCommand: cd apps/worker && pnpm start
envVars:
- key: NODE_ENV
value: production
- key: DATABASE_URL
sync: false
- key: REDIS_URL
sync: false
- key: ANTHROPIC_API_KEY
sync: false