forked from oomol-lab/open-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfly.toml
More file actions
35 lines (29 loc) · 657 Bytes
/
Copy pathfly.toml
File metadata and controls
35 lines (29 loc) · 657 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
# Change this to the globally unique Fly app name you create with `fly apps create`.
app = "my-open-connector"
primary_region = "iad"
[build]
dockerfile = "docker/Dockerfile"
[env]
NODE_ENV = "production"
PORT = "3000"
HOST = "0.0.0.0"
OOMOL_CONNECT_DATA_DIR = "/app/data"
[mounts]
source = "open_connector_data"
destination = "/app/data"
[http_service]
internal_port = 3000
force_https = true
auto_stop_machines = "suspend"
auto_start_machines = true
min_machines_running = 0
[[http_service.checks]]
interval = "30s"
timeout = "5s"
grace_period = "10s"
method = "GET"
path = "/health"
protocol = "http"
[[vm]]
size = "shared-cpu-1x"
memory = "512mb"