File size: 556 Bytes
a51a15b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
# fly.toml app configuration file generated for backend-production-ogog on 2025-04-21T00:36:09+01:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = 'backend-production-ogog'
primary_region = 'bos'
[build]
dockerfile = 'Dockerfile'
[http_service]
internal_port = 8000
force_https = true
auto_stop_machines = 'stop'
auto_start_machines = true
max_machines_count = 1
processes = ['app']
[[vm]]
memory = '16gb'
cpu_kind = 'performance'
cpus = 8
[env]
ENV_MODE = "production"
|