-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathexample.config.json
More file actions
40 lines (40 loc) · 1.08 KB
/
example.config.json
File metadata and controls
40 lines (40 loc) · 1.08 KB
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
{
"bot" : {
"token" : "YOUR_BOT_TOKEN",
"client" : {
"id" : "YOUR_BOT_ID",
"secret" : "YOUR_BOT_SECRET"
},
"embedColor" : {
"err" : "#db2b1f",
"warn" : "#ffd817",
"success" : "#49e358",
"magic" : "#8727f5",
"helix" : "#3ca2ff",
"default" : "#2b2d31"
},
"ownerIDs" : [
"YOUR_ID",
"OTHER_OWNER_ID"
],
"port": 4000,
"mongoUri": "mongo://yourmongouri"
},
"dashboard" : {
"port" : 80,
"domain" : "http://localhost",
"redirectUri" : "/discord/callback",
"license" : "---",
"ownerIDs" : [
"YOUR_ID",
"OTHER_OWNER_ID"
],
"mongoUri" : "mongo://",
"supportMail" : "support@helix.angellabs.xyz",
"ui" : {
"darkLogo" : "./src/db/assets/branding/Helix 000.png",
"lightLogo" : "./src/db/assets/branding/Helix 000.png",
"preload" : "./src/db/assets/branding/logo.png"
}
}
}