feat: add fly.toml
This commit is contained in:
parent
0a344f2dc3
commit
ac431a2b8c
1 changed files with 24 additions and 0 deletions
24
fly.toml
Normal file
24
fly.toml
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
app = "agentify-help"
|
||||
primary_region = "fra"
|
||||
|
||||
[build]
|
||||
|
||||
[http_service]
|
||||
internal_port = 3000
|
||||
force_https = true
|
||||
auto_stop_machines = "stop"
|
||||
auto_start_machines = true
|
||||
min_machines_running = 0
|
||||
processes = ["app"]
|
||||
|
||||
[[http_service.checks]]
|
||||
grace_period = "15s"
|
||||
interval = "30s"
|
||||
method = "GET"
|
||||
path = "/health"
|
||||
timeout = "10s"
|
||||
|
||||
[[vm]]
|
||||
memory = "512mb"
|
||||
cpu_kind = "shared"
|
||||
cpus = 1
|
||||
Loading…
Add table
Reference in a new issue