From 91404d1c4485d7cf4db4b0402ee8d8761b05e10e Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Sat, 11 May 2024 23:13:25 +0100 Subject: [PATCH] Adds a fly.toml for deploying to fly.io --- fly.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 fly.toml diff --git a/fly.toml b/fly.toml new file mode 100644 index 0000000..a529b54 --- /dev/null +++ b/fly.toml @@ -0,0 +1,17 @@ +app = 'web-check' +primary_region = 'lhr' + +[build] + +[http_service] + internal_port = 3000 + force_https = true + auto_stop_machines = true + auto_start_machines = true + min_machines_running = 0 + processes = ['app'] + +[[vm]] + memory = '1gb' + cpu_kind = 'shared' + cpus = 1