From 604f32104cd885f1f6cad23a40fedb5b96a4a76f Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Wed, 10 Sep 2025 23:52:13 -0700 Subject: [PATCH] Create fly.toml --- runner/fly.toml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 runner/fly.toml diff --git a/runner/fly.toml b/runner/fly.toml new file mode 100644 index 0000000..3848e68 --- /dev/null +++ b/runner/fly.toml @@ -0,0 +1,19 @@ +app = "git-pr-runner" +primary_region = "lax" + +[build] + dockerfile = "runner/Dockerfile" + +[env] + GITEA_INSTANCE_URL = "https://git-pr.fly.dev" + +[[mounts]] + source = "runner_data" + destination = "/data" + +[[services]] + internal_port = 8080 + processes = ["app"] + protocol = "tcp" + [[services.ports]] + port = 8080