-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathapp.json
71 lines (71 loc) · 1.97 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
{
"name": "3PG - Highly Customizable Discord Bot",
"description": "Host a bot without code, with one simple step.",
"keywords": [
"bot",
"discord bot",
"customizable discord bot",
"3pg"
],
"repository": "https://github.com/theADAMJR/6PG",
"env": {
"API_URL": {
"description": "The API URL [https://<heroku_app_name>.herokuapp.com/api]",
"value": "https://<heroku_app_name>.herokuapp.com/api"
},
"BOT_ID": {
"description": "Client ID from https://discord.com/developers.",
"value": ""
},
"BOT_TOKEN": {
"description": "Bot Token from https://discord.com/developers.",
"value": ""
},
"CLIENT_SECRET": {
"description": "Client Secret from https://discord.com/developers.",
"value": ""
},
"DASHBOARD_URL": {
"description": "The Website URL [https://<heroku_app_name>.herokuapp.com]",
"value": "https://<heroku_app_name>.herokuapp.com"
},
"GUILD_ID": {
"description": "Guild ID with the premium role in (optional).",
"value": "https://<heroku_app_name>.herokuapp.com",
"required": false
},
"MONGO_URI": {
"description": "The MongoDB URI to your database [i.e. from MongoDB Atlas].",
"value": ""
},
"OWNER_ID": {
"description": "Discord bot owner ID.",
"value": "",
"required": false
},
"PORT": {
"description": "Port for Heroku to use (default: 3000).",
"value": "3000"
},
"PREMIUM_ROLE_ID": {
"description": "Premium role ID in the GUILD_ID guild.",
"value": "",
"required": false
},
"STRIPE_SECRET_KEY": {
"description": "Secret key used for payments (optional).",
"value": "",
"required": false
},
"STRIPE_WEBHOOK_SECRET": {
"description": "Stripe webhook secret [whsec...] (optional).",
"value": "",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}