forked from modmail-dev/Modmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
43 lines (43 loc) · 1.61 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
{
"name": "Modmail",
"description": "An easy to install Modmail bot for Discord - DM to contact mods!",
"repository": "https://github.com/kyb3r/modmail",
"env": {
"TOKEN": {
"description": "Your discord bot's token.",
"required": true
},
"GUILD_ID": {
"description": "The id for the server you are hosting this bot for.",
"required": true
},
"MODMAIL_GUILD_ID": {
"description": "The ID of the discord server where the threads channels should be created (receiving server). Default to GUILD_ID.",
"required": false
},
"OWNERS": {
"description": "Comma separated user IDs of people that are allowed to use owner only commands. (eval).",
"required": true
},
"CONNECTION_URI": {
"description": "The connection URI for your database.",
"required": true
},
"DATABASE_TYPE": {
"description": "The type of your database. There is only one supported database at the moment - MongoDB (default).",
"required": false
},
"LOG_URL": {
"description": "The url of the log viewer app for viewing self-hosted logs.",
"required": true
},
"GITHUB_TOKEN": {
"description": "A github personal access token with the repo scope.",
"required": false
},
"REGISTRY_PLUGINS_ONLY": {
"description": "If set to true, only plugins that are in the registry can be loaded.",
"required": false
}
}
}