This repository has been archived by the owner on Jul 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathapp.json
62 lines (62 loc) · 2.03 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
{
"name": "Discord Downtime Notifier",
"description": "A small Discord bot that sends a message when a specified bot goes offline.",
"repository": "https://github.com/moonstar-x/discord-downtime-notifier",
"logo": "https://i.imgur.com/Tqnk48j.png",
"env": {
"DISCORD_TOKEN": {
"description": "Your bot's bot token.",
"required": true
},
"DISCORD_PREFIX": {
"description": "Your bot's command prefix.",
"value": "d!",
"required": true
},
"DISCORD_MONGO_USERNAME": {
"description": "The mongo database username.",
"value": "If you omit this you need to set DISCORD_MONGO_URI.",
"required": false
},
"DISCORD_MONGO_PASSWORD": {
"description": "The mongo database username.",
"value": "If you omit this you need to set DISCORD_MONGO_URI.",
"required": false
},
"DISCORD_MONGO_HOST": {
"description": "The mongo database username.",
"value": "If you omit this you need to set DISCORD_MONGO_URI.",
"required": false
},
"DISCORD_MONGO_DATABASE": {
"description": "The mongo database username.",
"value": "If you omit this you need to set DISCORD_MONGO_URI.",
"required": false
},
"DISCORD_MONGO_URI": {
"description": "The mongo database connection URI.",
"value": "mongodb://user:pass@server:port/database",
"required": false
},
"DISCORD_OWNER_ID": {
"description": "The ID of the bot's owner.",
"value": "123123123123",
"required": false
},
"DISCORD_OWNER_REPORTING": {
"description": "Whether command errors should be reported to the owner via DM.",
"value": "false",
"required": false
},
"DISCORD_BROADCAST_REPORTING": {
"description": "Whether broadcast errors should reported to the guild owner via DM.",
"value": "true",
"required": false
},
"DISCORD_PRESENCE_REFRESH_INTERVAL": {
"description": "The interval to refresh the bot's presence in ms.",
"value": "900000",
"required": false
}
}
}