forked from SideProjectGuys/invite-manager-bot
-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
config.example.json
78 lines (78 loc) · 1.41 KB
/
config.example.json
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"devToken": "",
"sentryDsn": "",
"bot": {
"dbPrefix": "im",
"type": "regular",
"embedColor": "00cbeb",
"activity": {
"status": "online",
"message": "invitelogger.me !",
"type": "streaming",
"url": "https://www.twitch.tv/arftnl"
},
"ids": {
"regular": "",
"pro": ""
},
"links": {
"add": "https://invlogger.chaun14.fr/bot",
"support": "https://discord.gg/zDSBpDu",
"website": "https://classic.invitelogger.me/",
"patreon": "https://paypal.me/chaun14"
},
"dm": {
"guild": "",
"channel": ""
},
"apiAuth": {
"username": "",
"password": ""
},
"dblToken": null,
"music": {
"pollyUrl": ""
}
},
"rabbitmq": {
"hostname": "localhost",
"username": "guest",
"password": "guest",
"prefix": ""
},
"socketio": {
"url": "http://localhost:2000",
"key": "your socket key"
},
"databases": [
{
"host": "localhost",
"port": 3306,
"user": "root",
"password": "",
"range": {
"from": 0,
"to": 0
}
},
{
"host": "localhost",
"port": 3306,
"user": "root",
"password": "",
"range": {
"from": 1,
"to": 1
}
}
],
"controller": {
"botToken": "Bot controller token, not your main bot token pls",
"shardCount": 2,
"owners": ["417977361011572747", "302901933419790347", "your id in this array"],
"incidentChannel": "id of a log channel",
"firstDebugPort": 40000,
"socket": false,
"autoRestart": true
}
}