-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconfig.json
35 lines (34 loc) · 919 Bytes
/
config.json
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
{
"name": "CBus MQTT Daemon",
"version": "1.0.0",
"slug": "cmqttd",
"description": "Connect a CBus network to MQTT",
"url": "https://github.com/edc1/cmqttd",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"init": false,
"startup": "application",
"boot": "auto",
"panel-icon": "mdi:server-network",
"options": {
"log_level": "DEBUG",
"broker_address": "",
"broker_port": 8883,
"broker_username": "",
"broker_password": "",
"broker_no_tls": false,
"cni_address": "",
"cni_port": 10001,
"time_sync": 300,
"no_clock": false},
"schema": {
"log_level": "list(CRITICAL|ERROR|WARNING|INFO|DEBUG)",
"broker_address": "str",
"broker_port": "port",
"broker_username": "str",
"broker_password": "password",
"broker_no_tls": "bool",
"cni_address": "str",
"cni_port": "port",
"time_sync": "int",
"no_clock": "bool"}
}