forked from UniBot/UniBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.js
33 lines (32 loc) · 922 Bytes
/
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
/**
* UniBot Configuration
*/
module.exports = process.env.UNIBOT && JSON.parse(process.env.UNIBOT) || {
"port" : process.env.PORT || process.env.OPENSHIFT_NODEJS_PORT || 8080,
"ip" : process.env.OPENSHIFT_NODEJS_IP || "127.0.0.1",
"mongo" : "mongodb://nodejitsu:[email protected]:10030/nodejitsudb7006161983",
"server": "irc.freenode.net",
"owner": "ProLoser",
"debug": true,
"irc" : {
"userName": "UniBot",
"realName": "UniBot Freenode Bot",
"nick": "UniBot",
"password": "unibot",
"port": 6667,
"debug": true,
"showErrors": false,
"autoRejoin": true,
"autoConnect": true,
"channels": [],
"secure": false,
"selfSigned": false,
"certExpired": false,
"floodProtection": false,
"floodProtectionDelay": 1000,
"sasl": false,
"stripColors": false,
"channelPrefixes": "&#",
"messageSplit": 512
}
};