-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.js.sample
52 lines (51 loc) · 1.42 KB
/
config.js.sample
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
module.exports = {
client: {
jid: "yourmail@gmail.com",
password: "yourpassword"
},
status_message: "available",
allow_auto_subscribe: true,
welcome_message: "Hi, I'm a robot but I have feelings too. Please say 'list' to me so I can show you how can I help you.",
services: {
bitly: {
desc: '"bitly http://los-rayos.com.ar" - URL shortener.',
// https://bitly.com/a/settings/advanced
username: '', //o_login
token: '', //API key
disabled: true
},
hn: {
desc: '"hn" - Hacker News home page.'
},
list: {
desc: '"list" - Show available commands.'
},
movies: {
desc: '"movies search star wars" - Movie search.',
token: '', //themoviedb.org api key
disabled: true
},
ping: {
desc: '"ping" - returns pong if the bot is alive.'
},
search: {
desc: '"search Lio Messi" - Returns the first google result for the search.'
},
torrent: {
desc: '"torrent seinfeld s01e01" - get piratebay match result with most seeders.'
},
twitter: {
desc: '"twitter @pixelbeat" - See last tweets from a specific user.',
credentials: {
consumer_key : '',
consumer_secret : '',
access_token_key : '',
access_token_secret : ''
},
disabled: true
},
weather: {
desc: '"weather Buenos Aires" - Returns the actual weather for the required place.'
}
}
};