-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
36 lines (29 loc) · 781 Bytes
/
Copy pathfly.toml
File metadata and controls
36 lines (29 loc) · 781 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
33
34
35
36
app = "agentflow-demo"
primary_region = "fra"
[build]
dockerfile = "../../Dockerfile.api"
[env]
# config/serving.yaml defaults to ClickHouse; the demo VM runs none.
SERVING_BACKEND = "duckdb"
DUCKDB_PATH = "/data/agentflow-demo.duckdb"
AGENTFLOW_USAGE_DB_PATH = "/data/agentflow-demo-api.duckdb"
AGENTFLOW_DEMO_MODE = "true"
AGENTFLOW_SEED_ON_BOOT = "true"
[[services]]
internal_port = 8000
protocol = "tcp"
auto_stop_machines = true
auto_start_machines = true
min_machines_running = 0
[[services.ports]]
port = 80
handlers = ["http"]
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[services.http_checks]
interval = "30s"
path = "/v1/health"
[[mounts]]
source = "agentflow_demo_data"
destination = "/data"