-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.json
36 lines (36 loc) · 955 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
35
36
{
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"boot": "auto",
"description": "Listens on MQTT topic and routes requests to Tuya devices, based on a one to one topic translation.",
"name": "Tuya Gateway",
"ingress": true,
"ingress_port": 8111,
"panel_icon": "mdi:access-point-network",
"options": {
"mqttuser": "",
"mqttpass": "",
"mqtthost": "127.0.0.1",
"mqttport": "1883",
"loglevel": "DEBUG"
},
"ports": {
"8111/tcp": 8111
},
"ports_description": {
"8111/tcp": "Web interface for GismoCaster"
},
"schema": {
"mqttuser": "str",
"mqttpass": "password",
"mqtthost": "str",
"mqttport": "port",
"loglevel": "list(INFO|WARN|ERROR|DEBUG)"
},
"services": ["mqtt:want"],
"slug": "tuyagateway",
"stage": "experimental",
"startup": "services",
"url": "/~https://github.com/sjthespian/addon-tuyagateway",
"version": "0.6",
"webui": "http://[HOST]:[PORT:8111]"
}