This repository was archived by the owner on Apr 23, 2022. It is now read-only.
forked from hassio-addons/repository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
91 lines (91 loc) · 1.83 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "Node-RED",
"version": "10.0.0",
"slug": "nodered",
"description": "Flow-based programming for the Internet of Things",
"url": "https://github.com/hassio-addons/addon-node-red",
"ingress": true,
"ingress_port": 0,
"ingress_stream": true,
"panel_icon": "mdi:sitemap",
"init": false,
"homeassistant": "0.92.0b2",
"arch": [
"aarch64",
"amd64",
"armhf",
"armv7",
"i386"
],
"ports": {
"80/tcp": 1880
},
"ports_description": {
"80/tcp": "Web interface"
},
"hassio_api": true,
"hassio_role": "manager",
"homeassistant_api": true,
"host_network": true,
"auth_api": true,
"uart": true,
"gpio": true,
"privileged": [
"SYS_RAWIO"
],
"devices": [
"/dev/mem"
],
"apparmor": false,
"map": [
"config:rw",
"media:rw",
"share:rw",
"ssl"
],
"options": {
"credential_secret": "",
"theme": "default",
"http_node": {
"username": "",
"password": ""
},
"http_static": {
"username": "",
"password": ""
},
"ssl": true,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"system_packages": [],
"npm_packages": [],
"init_commands": []
},
"schema": {
"log_level": "list(trace|debug|info|notice|warning|error|fatal)?",
"credential_secret": "password",
"theme": "list(default|dark|midnight-red|oled|solarized-dark|solarized-light)?",
"http_node": {
"username": "str",
"password": "password"
},
"http_static": {
"username": "str",
"password": "password"
},
"ssl": "bool",
"certfile": "str",
"keyfile": "str",
"system_packages": [
"str"
],
"npm_packages": [
"str"
],
"init_commands": [
"str"
],
"leave_front_door_open": "bool?"
},
"image": "ghcr.io/hassio-addons/node-red/{arch}"
}