-
Notifications
You must be signed in to change notification settings - Fork 138
Expand file tree
/
Copy pathfly.toml
More file actions
39 lines (33 loc) · 919 Bytes
/
fly.toml
File metadata and controls
39 lines (33 loc) · 919 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 web-speed-hackathon-2026
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# WARNING: このファイルを変更しないでください。変更した場合、順位対象外となります。
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
#
app = "web-speed-hackathon-2026"
primary_region = "nrt"
[build]
[build.args]
NODE_VERSION = "24.14.0"
[env]
PORT = "8080"
NODE_ENV = "production"
[http_service]
internal_port = 8080
force_https = true
auto_stop_machines = "stop"
auto_start_machines = true
min_machines_running = 0
processes = ["app"]
[[http_service.checks]]
interval = "10s"
timeout = "100s"
grace_period = "10s"
method = "GET"
path = "/"
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 2048