Files
hass-addons/hass-n8n/config.json
T
Dmitriy Biloshytskiy ecf888262c Added n8n add-on
2022-03-22 09:44:36 +02:00

39 lines
854 B
JSON

{
"name": "Hass n8n",
"version": "0.0.2",
"slug": "hass-n8n",
"description": "Self host your n8n instance",
"arch": ["armhf", "armv7", "aarch64", "amd64", "i386"],
"startup": "application",
"boot": "auto",
"icon": "ico.png",
"logo": "ico.png",
"webui": "[PROTO:protocol]://[HOST]:[PORT:5678]/",
"map": ["ssl"],
"apparmor": true,
"ports": {
"5678/tcp": 5678
},
"ports_description": {
"5678/tcp": "n8n Web interface"
},
"options": {
"auth": false,
"auth_username": "",
"auth_password": "",
"timezone": "Europe/Berlin",
"protocol": "http",
"certfile": "fullchain.pem",
"keyfile": "privkey.pem"
},
"schema": {
"auth": "bool",
"auth_username": "str?",
"auth_password": "str?",
"timezone": "str",
"protocol": "str",
"certfile": "str",
"keyfile": "str"
}
}