forked from htalha600/Fuzebox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrender.yaml
More file actions
32 lines (25 loc) · 888 Bytes
/
render.yaml
File metadata and controls
32 lines (25 loc) · 888 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
services:
- type: web
name: fuzebox-dashboard
runtime: docker
dockerfilePath: ./Dockerfile
# Render builds from your repo — no local .env is available.
# Set ANTHROPIC_API_KEY (and any optional vars) in:
# Render Dashboard → Your Service → Environment
envVars:
- key: ANTHROPIC_API_KEY
sync: false # must be set manually in the Render dashboard
- key: DASHBOARD_DB_PATH
value: /data/agent_dashboard.db # stored on the persistent disk below
- key: AGENTS_CONFIG_DIR
value: /app/agents
- key: MARKET_CONFIG_DIR
value: /app/config/market
- key: PYTHONUNBUFFERED
value: "1"
# Persistent disk — survives deploys, stores the SQLite database.
disk:
name: fuzebox-data
mountPath: /data
sizeGB: 1
healthCheckPath: /_stcore/health