From a83f33c4e5a90c84f46ebacac9aa0cb09ac58aa1 Mon Sep 17 00:00:00 2001 From: saagpatel Date: Sun, 29 Mar 2026 03:00:54 -0700 Subject: [PATCH] chore: add fly.toml for deployment configuration --- fly.toml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..9e14edd --- /dev/null +++ b/fly.toml @@ -0,0 +1,16 @@ +# fly.toml — Fly.io deployment configuration +# Update the app name to match your registered Fly.io app before running `flyctl deploy` +app = "slack-incident-bot" +primary_region = "sjc" + +[build] + +[http_service] + internal_port = 8080 + force_https = true + auto_stop_machines = "stop" + auto_start_machines = true + min_machines_running = 0 + +[[vm]] + size = "shared-cpu-1x"