40 lines
848 B
TOML
40 lines
848 B
TOML
|
|
# Self-check — quick "are you alive" probes. Useful for testing mic chain.
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "selfcheck.ping"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "ping.lua"
|
|||
|
|
sandbox = "minimal"
|
|||
|
|
timeout = 2000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"ты тут",
|
|||
|
|
"ты слышишь",
|
|||
|
|
"ты меня слышишь",
|
|||
|
|
"пинг",
|
|||
|
|
"ты живой",
|
|||
|
|
"ты на месте",
|
|||
|
|
"проверка связи",
|
|||
|
|
]
|
|||
|
|
en = ["are you there", "ping", "can you hear me"]
|
|||
|
|
ua = ["ти тут", "ти чуєш"]
|
|||
|
|
|
|||
|
|
|
|||
|
|
[[commands]]
|
|||
|
|
id = "selfcheck.smoke"
|
|||
|
|
type = "lua"
|
|||
|
|
script = "smoke.lua"
|
|||
|
|
sandbox = "standard"
|
|||
|
|
timeout = 8000
|
|||
|
|
|
|||
|
|
[commands.phrases]
|
|||
|
|
ru = [
|
|||
|
|
"проверь себя",
|
|||
|
|
"самопроверка",
|
|||
|
|
"сделай smoke тест",
|
|||
|
|
"проверка всех систем",
|
|||
|
|
]
|
|||
|
|
en = ["self check", "smoke test", "check yourself"]
|
|||
|
|
ua = ["перевір себе"]
|