Diffdown is a real-time collaborative Markdown editor/previewer built on the AT Protocol diffdown.com

chore: split fly.toml into separate production and staging configs

+22 -1
+1 -1
.gitignore
··· 16 16 .Trashes 17 17 ehthumbs.db 18 18 Thumbs.db 19 - /server 19 + server
+21
fly-production.toml
··· 1 + app = "markdownhub" 2 + primary_region = "ewr" 3 + 4 + [build] 5 + 6 + [env] 7 + PORT = "8080" 8 + DB_PATH = "/data/markdownhub.db" 9 + BASE_URL = "https://diffdown.com" 10 + DIFFDOWN_BASE_URL = "https://diffdown.com" 11 + 12 + [http_service] 13 + internal_port = 8080 14 + force_https = true 15 + auto_stop_machines = "stop" 16 + auto_start_machines = true 17 + min_machines_running = 0 18 + 19 + [mounts] 20 + source = "data" 21 + destination = "/data"
fly.toml fly-staging.toml