-
Notifications
You must be signed in to change notification settings - Fork 163
/
kodi-hosts.config.js.dist
44 lines (43 loc) · 1.77 KB
/
kodi-hosts.config.js.dist
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
exports.kodiConfig = [{
id: 'kodi', // For now leave the first set to kodi.
// YOUR_EXTERNAL_PROTOCOL (http or https)
kodiProtocol: 'http',
// YOUR_EXTERNAL_IP_ADDRESS
kodiIp: '192.168.1.17',
// YOUR_KODI_PORT
kodiPort: '8080',
// YOUR_KODI_USER_NAME
kodiUser: 'kodi',
// YOUR_KODI_PASSWORD
kodiPassword: 'myKodiPassword'
}
// You can use this to specify additonal kodi installation, that you'd like to control.
// ,{id: 'bedroom', // For example the bedroom, will allow you to create IFTTT sentences like: `okay google bedroom play ..`
// YOUR_EXTERNAL_PROTOCOL (http or https)
// kodiProtocol: 'http',
// // YOUR_EXTERNAL_IP_ADDRESS
// kodiIp: '192.168.1.18',
// // YOUR_KODI_PORT
// kodiPort: '8080',
// // YOUR_KODI_USER_NAME
// kodiUser: 'kodi',
// // YOUR_KODI_PASSWORD
// kodiPassword: 'myKodiPassword'}
];
exports.globalConfig = {
// YOUR_CONNECTION_PASSWORD
authToken: 'MyAuthTokenSharedWith_IFTTT_Applet',
// YOUR_LOCAL_LISTENING_PORT
listenerPort: '8099',
// YOUR_YOUTUBE_API_KEY
youtubeKey: 'AIzaSyBYKxhPJHYUnzYcdOAv14Gmq-43_W9_79w',
// Configure how broker handle accents in phrase matching.
// Set to `true` to enable accent insensitive matching or `false` to enable accent sensitive matching.
// Can be configure by environment variable BROKER_ACCENT_INSENSITIVE_MATCH
brokerAccentInsensitiveMatch: false,
// Configure how broker caches language file.
// Set to `true` to use previously loaded language file if previous and actual request language are equals
// or to `false` to force broker to reload language file on every request.
// Can be configure by environment variable BROKER_LANGUAGE_CACHE_ENABLE
brokerLanguageCacheEnable: true
};