mirror of
https://github.com/hassio-addons/addon-home-panel.git
synced 2025-05-04 19:01:21 +00:00
44 lines
957 B
JSON
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}"
|
|
}
|
|
}
|