-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrender.yaml
More file actions
48 lines (45 loc) · 1.08 KB
/
render.yaml
File metadata and controls
48 lines (45 loc) · 1.08 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
# render.yaml
services:
- type: web
name: prexus-intelligence
runtime: go
rootDir: backend/backend
buildCommand: go build -o app ./apps/api-gateway/
startCommand: ./app
plan: free
envVars:
- key: PORT
value: "8080"
- key: SUPABASE_URL
sync: false
- key: SUPABASE_KEY
sync: false
- key: JWT_SECRET
sync: false
- key: ANTHROPIC_API_KEY
sync: false
- key: GEMINI_API_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: DATA_ENGINE_URL
fromService:
name: meteorium-engine
type: web
property: url
- key: ENGINE_SECRET
sync: false
- type: web
name: meteorium-engine
runtime: python
rootDir: data-engine/python
buildCommand: pip install -r requirements.txt
startCommand: uvicorn layer6.api:app --host 0.0.0.0 --port $PORT
plan: free
envVars:
- key: ENGINE_SECRET
sync: false
- key: NASA_FIRMS_KEY
sync: false
- key: ALPHA_VANTAGE_KEY
sync: false