-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
77 lines (75 loc) · 2.05 KB
/
render.yaml
File metadata and controls
77 lines (75 loc) · 2.05 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
services:
# Dashboard (Brain) - Admin UI for team
# Uses Docker for reliable monorepo builds
- type: web
name: gicm-dashboard
runtime: docker
region: oregon
plan: starter
dockerfilePath: ./Dockerfile
dockerContext: .
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 10000
- key: NEXT_PUBLIC_SUPABASE_URL
sync: false
- key: NEXT_PUBLIC_SUPABASE_ANON_KEY
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: NEXT_PUBLIC_OPUS67_URL
value: https://opus67-brain.onrender.com
- key: NEXT_PUBLIC_HUB_URL
value: https://gicm-hub.onrender.com
healthCheckPath: /
# Integration Hub - Backend APIs
- type: web
name: gicm-hub
runtime: node
region: oregon
buildCommand: npm install -g pnpm@10 && pnpm install --no-frozen-lockfile && pnpm --filter @gicm/integration-hub... build
startCommand: cd packages/integration-hub && npm start
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 10000
- key: SUPABASE_URL
sync: false
- key: SUPABASE_KEY
sync: false
healthCheckPath: /health
# OPUS 67 BRAIN - Self-Evolving AI Runtime
- type: web
name: opus67-brain
runtime: node
region: oregon
plan: starter
buildCommand: npm install -g pnpm@10 && pnpm install --no-frozen-lockfile && pnpm --filter @gicm/opus67... build
startCommand: cd packages/opus67 && npm start
envVars:
- key: NODE_ENV
value: production
- key: PORT
value: 10000
- key: HOST
value: 0.0.0.0
- key: LOG_LEVEL
value: info
- key: CORS_ORIGIN
value: https://gicm-dashboard.onrender.com
- key: NEO4J_URI
sync: false
- key: NEO4J_USERNAME
sync: false
- key: NEO4J_PASSWORD
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GEMINI_API_KEY
sync: false
- key: DEEPSEEK_API_KEY
sync: false
healthCheckPath: /health