-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathrender.yaml
More file actions
37 lines (37 loc) · 1.06 KB
/
render.yaml
File metadata and controls
37 lines (37 loc) · 1.06 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
services:
- type: web
name: openclaw
runtime: docker
# Standard (~2GB RAM) is too small for a ~1.5GB+ Node heap + proxy; Pro (~4GB) fits NODE_OPTIONS below.
plan: pro
healthCheckPath: /health
envVars:
- key: PORT
value: "10000"
# Heap must stay below instance RAM (see https://render.com/docs/blueprint-spec#plan).
- key: NODE_OPTIONS
value: "--max-old-space-size=3072"
- key: OPENCLAW_STATE_DIR
value: /data/.openclaw
- key: OPENCLAW_WORKSPACE_DIR
value: /data/workspace
- key: OPENCLAW_GATEWAY_TOKEN
generateValue: true
# Primary AI providers (set at least one)
- key: ANTHROPIC_API_KEY
sync: false
- key: OPENAI_API_KEY
sync: false
- key: GEMINI_API_KEY
sync: false
# Additional providers (optional)
- key: OPENROUTER_API_KEY
sync: false
- key: MOONSHOT_API_KEY
sync: false
- key: MINIMAX_API_KEY
sync: false
disk:
name: openclaw-data
mountPath: /data
sizeGB: 5