addon-home-panel/home-panel/config.json
2018-08-18 14:53:23 +01:00

44 lines
957 B
JSON

{
"name": "Home Panel",
"version": "dev",
"slug": "home-panel",
"description": "A touch-compatible web-app for controlling the home",
"url": "https://github.com/timmo001/addon-home-panel",
"webui": "[PROTO:ssl]://[HOST]:[PORT:8234]",
"startup": "application",
"arch": [
"aarch64",
"amd64",
"armhf",
"i386"
],
"boot": "auto",
"hassio_api": true,
"homeassistant_api": true,
"host_network": false,
"ports": {
"3234/tcp": 3234,
"8234/tcp": 8234
},
"map": [
"config:rw",
"ssl"
],
"options": {
"log_level": "info",
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"config_file": "home-panel-config.json"
},
"schema": {
"log_level": "match(^(trace|debug|info|notice|warning|error|fatal)$)",
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"config_file": "str"
},
"environment": {
"LOG_FORMAT": "{LEVEL}: {MESSAGE}"
}
}