forked from rhasspy/hassio-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.json
executable file
·45 lines (45 loc) · 1.1 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
{
"name": "Rhasspy Assistant",
"slug": "rhasspy",
"version": "2.5.11",
"description": "Offline voice assistant for Home Assistant",
"url": "https://github.com/rhasspy/hassio-addons",
"arch": [
"aarch64",
"amd64",
"armhf"
],
"map": [
"share:rw",
"ssl"
],
"options": {
"profile_dir": "/share/rhasspy/profiles",
"profile_name": "en",
"ssl": false,
"certfile": "fullchain.pem",
"keyfile": "privkey.pem",
"asoundrc": "",
"http_root": ""
},
"audio": true,
"ports": {
"12101/tcp": 12101,
"12333/udp": 12333
},
"ports_description": {
"12101/tcp": "Rhasspy Web UI + API",
"12333/udp": "Port for HTTP POST audio stream input"
},
"schema": {
"profile_dir": "str",
"profile_name": "str",
"ssl": "bool",
"certfile": "match(^[^/].*)",
"keyfile": "match(^[^/].*)",
"asoundrc": "str",
"http_root": "str"
},
"homeassistant_api": true,
"webui": "[PROTO:ssl]://[HOST]:[PORT:12101]/"
}