-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
executable file
·93 lines (93 loc) · 2.57 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
{
"name": "2PG - Simple, powerful Discord Bot",
"description": "Host a bot without code, with one simple step.",
"keywords": [
"bot",
"discord bot",
"simple discord bot",
"powerful discord bot",
"ai discord bot",
"2pg"
],
"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": "Bot 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
},
"FEEDBACK_CHANNEL_ID": {
"description": "Channel ID to get dashboard feedback (optional).",
"value": "",
"required": false
},
"VOTE_CHANNEL_ID": {
"description": "Channel ID to log top.gg votes (optional).",
"value": "",
"required": false
},
"TOP_GG_AUTH": {
"description": "top.gg API Key, to receive vote logs (optional).",
"value": "",
"required": false
},
"DBOTS_AUTH": {
"description": "dbots.co API Key, to post stats (optional).",
"value": "",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}