From fe5631fd6aa467b532294855673032a75becc346 Mon Sep 17 00:00:00 2001 From: bkellam Date: Fri, 6 Sep 2024 13:18:46 -0700 Subject: [PATCH] Turn off auto start / stop. See: https://fly.io/docs/launch/autostop-autostart/\#keep-all-machines-running-continuously --- fly.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fly.toml b/fly.toml index eea89a64..aceb37c3 100644 --- a/fly.toml +++ b/fly.toml @@ -11,8 +11,8 @@ primary_region = 'sjc' [http_service] internal_port = 3000 force_https = true - auto_stop_machines = 'stop' - auto_start_machines = true + auto_stop_machines = 'off' + auto_start_machines = false min_machines_running = 0 processes = ['app']