This repository has been archived by the owner on Jan 16, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
app.json
103 lines (103 loc) · 3.17 KB
/
app.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "Tox-Mod",
"description": "The Discord Bot with a Little Bit of Attitude",
"repository": "https://github.com/Tox-Mod/ToxModBot",
"logo": "https://toxmod.xyz/images/ToxModLogo.png",
"website": "https://toxmod.xyz/",
"success_url": "https://toxmod.xyz/fork/thanks",
"keywords": [
"node",
"discord",
"bot",
"dashboard"
],
"image": "heroku/nodejs",
"buildpacks": [
{
"url": "heroku/nodejs"
}
],
"env": {
"TOKEN": {
"description": "The Discord Bot Token (https://discord.com/developers/applications)",
"required": "true"
},
"CLIENT_ID": {
"description": "The Discord Bot Client ID",
"required": "true"
},
"CLIENT_SECRET": {
"description": "The Discord Bot Client Secret for oAuth",
"required": "true"
},
"DOMAIN": {
"description": "URL of your webserver (Example: https://domain.xyz). Change this if you want to use the web-dashboard.",
"value": "https://toxmod.xyz",
"required": "true"
},
"MONGO_URL": {
"description": "Mongo DB Connection String",
"required": "true"
},
"MAINTENANCE": {
"description": "Maintenance Mode (true or false)",
"required": "true"
},
"IBL_AUTH": {
"description": "Authorization Token to post stats to https://infinitybotlist.com",
"required": "true"
},
"PARADISE_AUTH": {
"description": "Authorization Token to post stats to https://paradisebots.net",
"required": "true"
},
"SERVER_INV": {
"description": "Discord Invite for your Support Server",
"required": "true"
},
"SERVER_ID": {
"description": "Discord Server ID for your Support Server",
"required": "true"
},
"JOIN_LOGS": {
"description": "Channel ID to send Logs to when the Bot joins or leaves a server",
"required": "true"
},
"AUTH_LOGS": {
"description": "Channel ID to send Logs to when someone logs in to the site",
"required": "true"
},
"BAN_LOGS": {
"description": "Channel ID to send Logs to when a Banned user tries to access the site",
"required": "true"
},
"BUG_LOGS": {
"description": "Channel ID to send Logs to for Bug Reports",
"required": "true"
},
"ERR_LOGS": {
"description": "Channel ID to send Logs to when a Error occurs with the Website",
"required": "true"
},
"BOT_LOGS": {
"description": "Channel ID to send version checks to",
"required": "true"
},
"OWNERS": {
"description": "Array of the Bot Owner(s) Discord IDs separated by Comas and Spaces (Ex: 1234567891011, 1234567891011)",
"required": "true"
},
"DEVS": {
"description": "Array of the Bot Dev(s) Discord IDs separated by Comas and Spaces (Ex: 1234567891011, 1234567891011)",
"required": "true"
},
"ADMINS": {
"description": "Array of the Bot Admin(s) Discord IDs separated by Comas and Spaces (Ex: 1234567891011, 1234567891011)",
"required": "true"
},
"BETA_WL": {
"description": "Array of the Beta User(s) Discord IDs separated by Comas and Spaces (Ex: 1234567891011, 1234567891011)",
"required": "true"
}
}
}