-
Notifications
You must be signed in to change notification settings - Fork 8
/
example.config.js
43 lines (41 loc) · 1.01 KB
/
example.config.js
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
/*!
**| Example Configuration
**@
*/
'use strict';
module.exports = {
ponk: {
useflair : true,
peers : ['OtherBot'],
audience : ['us'],
},
commands: {
disabled : ['vodka','taco'],
trigger : /^\.|^\!/,
ignorelog : ['8ball'],
},
sync: {
host : 'cytu.be',
port : '443', secure: true,
user : 'MyNewBot',
auth : 'MyNewBotsPassword',
chan : 'MyAwesomeCyTubeChannel',
pass : 'DeleteThisLineIfYouChannelHasNoPassword',
},
db: {
client : 'sqlite3',
connection : { filename: 'ponkbot.db' },
},
webhost: {
secret : 'JustRandomlySmashYourKeyboard',
weblink : 'http://mycheap.vps',
webport : 'somePortImNotUsing',
sockport : 'someOtherPortImNotUsing',
},
api: {
youtube : 'MyYouTubeAPIkey',
wolfram : 'MyWolframAPIkey',
openweather : 'MyOpenWeatherAPIkey',
cleverbot : 'MyCleverBotAPIkey',
}
}