-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.json
31 lines (31 loc) · 959 Bytes
/
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
{
"name": "Discord AppBot",
"description": "A Discord Application bot.",
"repository": "https://github.com/Akrasio/AppBot/",
"logo": "https://avatars.githubusercontent.com/u/106497713?s=200&v=4",
"keywords": ["node", "express", "static", "discord.js"],
"env": {
"clientSecret": {
"description": "The client secret for your bot on discord!",
"required": true
},
"MONGO": {
"description": "The MONGODB for your bot on discord!",
"required": true,
"value": "mongodb://username:password@example.com:27017/DB?authSource=admin"
},
"supportCode": {
"description": "The support server INVITE code",
"required": true,
"value": "nKPp7DtvrP"
},
"callbackURL": {
"description": "The callback url for your bots website!",
"value": "https://example.com/callback"
},
"TOKEN": {
"description": "The token for your bot!",
"required": true
}
}
}