forked from m0ngr31/kanzi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
57 lines (57 loc) · 1.98 KB
/
app.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
{
"name": "Kodi-Alexa Skill",
"description": "An Alexa still that let's you control (almost) anything on a Kodi box.",
"repository": "https://github.com/m0ngr31/kodi-alexa",
"logo": "http://i.imgur.com/BaBCo1t.png",
"keywords": ["kodi", "alexa", "python", "flask-ask"],
"website": "https://github.com/m0ngr31/kodi-alexa",
"env": {
"KODI_ADDRESS": {
"description": "URL or IP adress to talk to Kodi.",
"value": ""
},
"KODI_PORT": {
"description": "Open port on your router that Kodi is port forwarded.",
"value": ""
},
"KODI_USERNAME": {
"description": "Your Kodi user name.",
"value": ""
},
"KODI_PASSWORD": {
"description": "Your Kodi password.",
"value": ""
},
"KODI_SCHEME": {
"description": "The Kodi webserver only supports HTTP, however if you have a reverse proxy running and have SSL enabled, enter 'https' here. Otherwise, leave blank.",
"value": "",
"required": false
},
"KODI_SUBPATH": {
"description": "If using a reverse proxy you might need to add an extra bit to the url before 'jsonrpc'.",
"value": "",
"required": false
},
"SKILL_APPID": {
"description": "Add this to enable verification of requests.",
"value": "",
"required": false
},
"SKILL_TZ": {
"description": "Your local time zone for responses that include absolute times. See https://en.wikipedia.org/wiki/List_of_tz_database_time_zones. Leave empty or undefined (commented out) if you don't need or want absolute time responses.",
"value": "",
"required": false
},
"LANGUAGE": {
"description": "If you are German speaker, put 'de' here. If not, leave blank.",
"value": "",
"required": false
},
"SHUTDOWN_MEANS_QUIT": {
"description": "If you'd like 'Alexa, tell Kodi to shut down' to quit Kodi instead of shutting down the system.",
"value": "",
"required": false
}
},
"image": "heroku/python"
}