-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
39 lines (32 loc) · 777 Bytes
/
fly.toml
File metadata and controls
39 lines (32 loc) · 777 Bytes
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
35
36
37
38
39
# fly.toml app configuration file generated for beagle on 2024-01-13T21:47:33+02:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "beagle"
primary_region = "ord"
console_command = "/rails/bin/rails console"
[build]
[[mounts]]
source = "data"
destination = "/data"
auto_extend_size_threshold = 0
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = false
auto_start_machines = true
min_machines_running = 1
processes = ["app"]
[[http_service.checks]]
grace_period = "10s"
interval = "30s"
method = "GET"
timeout = "5s"
path = "/health/fly"
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 1024
[[statics]]
guest_path = "/rails/public"
url_prefix = "/"