From 81e43de67ff2315b9ee1973a6277ee9cac5cb654 Mon Sep 17 00:00:00 2001 From: Lyndon Maydwell Date: Mon, 11 Dec 2023 18:24:28 +1000 Subject: [PATCH] fly example --- fly.toml.example | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 fly.toml.example diff --git a/fly.toml.example b/fly.toml.example new file mode 100644 index 0000000..a25e611 --- /dev/null +++ b/fly.toml.example @@ -0,0 +1,23 @@ +# fly.toml app configuration file generated for spike-nodejs-app on 2023-12-11T18:13:43+10:00 +# +# See https://fly.io/docs/reference/configuration/ for information about how to use this file. +# + +app = "my-cool-app" +primary_region = "syd" + +[build] + dockerfile = "Dockerfile" + +[http_service] + internal_port = 8100 + force_https = true + auto_stop_machines = true + auto_start_machines = true + min_machines_running = 0 + processes = ["app"] + +[[vm]] + cpu_kind = "shared" + cpus = 1 + memory_mb = 1024