fork of gh:maxwoffard/pic-to-patch
0

Configure Feed

Select the types of activity you want to include in your feed.

pic-to-patch / fly.toml
413 B 26 lines
1app = "pic-to-patch" 2primary_region = "iad" 3 4[build] 5 dockerfile = "Dockerfile" 6 7[http_service] 8 internal_port = 8000 9 force_https = true 10 auto_stop_machines = false 11 auto_start_machines = true 12 min_machines_running = 1 13 processes = ["api"] 14 15[[vm]] 16 cpu_kind = "shared" 17 cpus = 2 18 memory_mb = 4096 19 20[[processes]] 21 name = "api" 22 command = "server" 23 24[[processes]] 25 name = "worker" 26 command = "worker"