forked from OmerTu/GoogleHomeKodi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkodi-hosts.config.js.dist
35 lines (34 loc) · 1.14 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
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'
};