at main 548 B view raw
1# fly.toml app configuration file generated for zig-bsky-feed on 2026-01-02T20:04:47-06:00 2# 3# See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4# 5 6app = 'zig-bsky-feed' 7primary_region = 'ord' 8 9[build] 10 11[http_service] 12 internal_port = 3000 13 force_https = true 14 auto_stop_machines = 'stop' 15 auto_start_machines = true 16 min_machines_running = 1 17 processes = ['app'] 18 19[mounts] 20 source = "feed_data" 21 destination = "/data" 22 23[[vm]] 24 memory = '256mb' 25 cpu_kind = 'shared' 26 cpus = 1 27 memory_mb = 256