-
Notifications
You must be signed in to change notification settings - Fork 0
/
Commands.toml
28 lines (19 loc) · 945 Bytes
/
Commands.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
# DEVELOPMENT COMMANDS
# --------------------
# Use the commands below to easily launch the watchdog components with an environment
# file located at the project root directory (.env)
# Launch the watchdog server
server = { cmd = "cargo run server -c ./data/config.yaml", load_dotenv = true }
# Launch the watchdog relay for "region-north"
relay-north = { cmd = "cargo run relay --region region-north", load_dotenv = true }
# Launch the watchdog relay for "region-west"
relay-west = { cmd = "cargo run relay --region region-west", load_dotenv = true }
# Launch the watchdog status CLI
status = { cmd = "cargo run status", load_dotenv = true }
# Launch the watchdog incident CLI
incident-ls = { cmd = "cargo run incident ls", load_dotenv = true }
# Launch the watchdog alerting test CLI
alerting-test = { cmd = "cargo run alerting test", load_dotenv = true }
# RELEASE COMMANDS
# ----------------
release = { cmd = "bash ./release.sh" }