-
Notifications
You must be signed in to change notification settings - Fork 90
/
Copy pathapp.json
45 lines (45 loc) · 1.3 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
{
"name": "6PG - Discord Bot Maker",
"description": "Host a bot without code, with one simple step.",
"keywords": [
"bot maker",
"discord bot maker",
"6pg"
],
"repository": "https://github.com/theADAMJR/6PG",
"env": {
"API_URL": {
"description": "Same as DASHBOARD_URL, but with /api at the end.",
"value": "https://<heroku_app_name>.herokuapp.com/api"
},
"CLIENT_ID": {
"description": "Client ID 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"
},
"ENCRYPTION_KEY": {
"description": "Key for encrypting and decrypting bot tokens.",
"generator": "secret"
},
"MONGO_URI": {
"description": "The MongoDB URI to your database [i.e. from MongoDB Atlas].",
"value": "mongodb+srv://<username>:<password>@<hostname>/6PG?retryWrites=true&w=majority"
},
"PORT": {
"description": "Port for Heroku to use (default: 3000).",
"value": "3000"
}
},
"buildpacks": [
{
"url": "heroku/nodejs"
}
]
}