search for standard sites pub-search.waow.tech/
search zig blog atproto
at main 583 B view raw
1# fly.toml - leaflet search slice 2app = 'leaflet-search-slice' 3primary_region = 'ewr' 4 5[build] 6 image = 'ghcr.io/bigmoves/quickslice:latest' 7 8[env] 9 DATABASE_URL = 'sqlite:/data/quickslice.db' 10 HOST = '0.0.0.0' 11 PORT = '8080' 12 EXTERNAL_BASE_URL = 'https://leaflet-search-slice.fly.dev' 13 14[[mounts]] 15 source = 'leaflet_search_data' 16 destination = '/data' 17 18[http_service] 19 internal_port = 8080 20 force_https = true 21 auto_stop_machines = 'stop' 22 auto_start_machines = true 23 min_machines_running = 1 24 25[[vm]] 26 memory = '1gb' 27 cpu_kind = 'shared' 28 cpus = 1 29 memory_mb = 1024