-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfly.toml
39 lines (30 loc) · 943 Bytes
/
fly.toml
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 shard-long-dew-9956 on 2023-12-15T00:40:56-04:00
#
# See https://fly.io/docs/reference/configuration/ for information about how to use this file.
#
app = "shard"
primary_region = "yul"
[build]
dockerfile = "Dockerfile"
[env]
RUST_LOG = "info"
[processes]
boot = "shard --listen-address /ip4/0.0.0.0/tcp/40837 --secret-key-seed 1 provide --db-path .db --refresh-interval 1209600"
other = "shard --listen-address /ip4/0.0.0.0/tcp/42961 --peer /ip4/213.188.207.114/tcp/40837/p2p/12D3KooWPjceQrSwdWXPyLLeABRXmuqt69Rg3sBYbU1Nft9HyQ6X provide --db-path .db"
[[services]]
protocol = "tcp"
internal_port = 40837
processes = ["boot"]
[[services.ports]]
port = 40837
[[services]]
protocol = "tcp"
internal_port = 42961
processes = ["other"]
[[services.ports]]
port = 42961
[[vm]]
cpu_kind = "shared"
cpus = 1
memory_mb = 1024
processes = ["boot", "other"]