From 3b924af44cdace56e3a255f74faea95cdf226983 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Sat, 24 Jan 2026 08:53:49 +0000 Subject: [PATCH] chore(fly): update Flawd demo config --- fly.toml | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/fly.toml b/fly.toml index e2c95a952..d810dc730 100644 --- a/fly.toml +++ b/fly.toml @@ -1,27 +1,32 @@ -# Clawdbot Fly.io deployment configuration +# Flawd - Clawdbot Fly.io demo deployment # See https://fly.io/docs/reference/configuration/ -app = "clawdbot" -primary_region = "lhr" # London +app = "flawd-bot" +primary_region = "lhr" [build] dockerfile = "Dockerfile" [env] NODE_ENV = "production" - # Fly uses x86, but keep this for consistency CLAWDBOT_PREFER_PNPM = "1" + CLAWDBOT_STATE_DIR = "/data" + NODE_OPTIONS = "--max-old-space-size=1536" + +[processes] + app = "node dist/index.js gateway --allow-unconfigured --port 3000 --bind lan" [http_service] internal_port = 3000 force_https = true - auto_stop_machines = false # Keep running for persistent connections + auto_stop_machines = false auto_start_machines = true min_machines_running = 1 + processes = ["app"] [[vm]] - size = "shared-cpu-1x" - memory = "512mb" + size = "shared-cpu-2x" + memory = "2048mb" [mounts] source = "clawdbot_data"