From ac431a2b8c16a67be7ccad66ef6ccc402efd5ee5 Mon Sep 17 00:00:00 2001 From: gitadmin Date: Sat, 2 May 2026 13:07:30 +0000 Subject: [PATCH] feat: add fly.toml --- fly.toml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..f520e1e --- /dev/null +++ b/fly.toml @@ -0,0 +1,24 @@ +app = "agentify-help" +primary_region = "fra" + +[build] + +[http_service] + internal_port = 3000 + force_https = true + auto_stop_machines = "stop" + auto_start_machines = true + min_machines_running = 0 + processes = ["app"] + + [[http_service.checks]] + grace_period = "15s" + interval = "30s" + method = "GET" + path = "/health" + timeout = "10s" + +[[vm]] + memory = "512mb" + cpu_kind = "shared" + cpus = 1