Spaces:
Running
Running
File size: 609 Bytes
947c08e |
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 28 29 30 31 32 33 34 |
# fly.toml app configuration file generated for ComicMTL on 2023-12-08T09:40:34+07:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "ComicMTL"
primary_region = "sin"
console_command = "/code/manage.py shell"
[build]
[deploy]
[env]
PORT = "8000"
[http_service]
internal_port = 8000
force_https = true
auto_stop_machines = false
auto_start_machines = false
min_machines_running = 0
processes = ["app"]
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 256
[[statics]]
guest_path = "/code/static"
url_prefix = "/static/"
|