-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathconfig.js
37 lines (35 loc) · 825 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
34
35
36
37
module.exports = {
token: process.env.token || "", // Your bot token
channelId: process.env.channelId || "", //Channel Id you want to send the message
webMonitor: true, // Set to false if you don't want to use web-monitor
expressPort: process.env.expressPort || 3000, // Port for web monitor
nodes: [
{
host: "",
password: "",
port: 2333,
identifier: "",
secure: true,
reconnectTimeout: 300000,
reconnectTries: 100,
},
{
host: "",
password: "",
port: 2333,
identifier: "",
secure: true,
reconnectTimeout: 300000,
reconnectTries: 100,
},
{
host: "",
password: "",
port: 2333,
identifier: "",
secure: true,
reconnectTimeout: 300000,
reconnectTries: 100,
},
],
};