An experimental IndieWeb site built in Go.
at main 666 B view raw
1# fly.toml app configuration file generated for puregarlicspace on 2024-08-06T08:36:09-07:00 2# 3# See https://fly.io/docs/reference/configuration/ for information about how to use this file. 4# 5 6app = 'puregarlicspace' 7primary_region = 'sjc' 8 9[build] 10 dockerfile = "Dockerfile" 11 12[http_service] 13 internal_port = 80 14 force_https = true 15 auto_stop_machines = 'suspend' 16 auto_start_machines = true 17 min_machines_running = 0 18 processes = ['app'] 19 20[[vm]] 21 memory = '1gb' 22 cpu_kind = 'shared' 23 cpus = 1 24 25[mounts] 26 source = "puregarlicspace_data" 27 destination = "/data" 28 initial_size = "1GB" 29 auto_extend_size_threshold = 80 30 auto_extend_size_increment = "1GB"