-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
37 lines (31 loc) · 829 Bytes
/
Copy pathfly.toml
File metadata and controls
37 lines (31 loc) · 829 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
37
# NOTE: This service has been migrated to GCP Cloud Run (v1.4, 2026-05-06).
# This fly.toml is kept for reference only. The active deployment is now
# managed by .github/workflows/deploy-cloud-run.yml.
#
app = "ai-orchestrator-service-rodmen07"
primary_region = "iad"
[build]
dockerfile = "Dockerfile"
[env]
APP_PORT = "8081"
ANTHROPIC_MODEL = "claude-sonnet-4-6"
REQUEST_TIMEOUT_SECONDS = "30"
[[services]]
internal_port = 8081
protocol = "tcp"
auto_stop_machines = "off"
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
[[services.ports]]
port = 80
handlers = ["http"]
[[services.ports]]
port = 443
handlers = ["tls", "http"]
[[services.http_checks]]
interval = "15s"
timeout = "5s"
grace_period = "20s"
method = "get"
path = "/health"