-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
36 lines (36 loc) · 1.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
{
"name": "Matsubo",
"description": "Discord bot for international students in Japan.",
"repository": "https://github.com/makokaz/matsubo",
"keywords": [
"discord",
"bot"
],
"success_url": "/",
"env": {
"BOT_TOKEN": {
"description": "Discord Bot Access Token"
},
"BOT_Name": {
"description": "Name of the Discord bot",
"value": "Matsubo"
},
"BOT_URL": {
"description": "The URL where you will be directed to when you click on the Bot-name in Discord",
"value": "https://github.com/makokaz/matsubo"
},
"BOT_ICON_URL": {
"description": "The Icon-URL of the bot-image you use",
"value": "https://discord.com/assets/f9bb9c4af2b9c32a2c5ee0014661546d.png"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"as": "DATABASE"
}
],
"scripts": {
"postdeploy": "python -m cogs.utils.database create"
}
}