-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathapp.json
22 lines (22 loc) · 808 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
{
"name": "mentionbot",
"description": "Get mentioned when certain phrases (such as your name) appear in Discord messages",
"repository": "https://github.com/matthewdias/mentionbot",
"addons": [{ "plan": "heroku-postgresql:hobby-dev" }],
"env": {
"DATABASE_URL": {
"description": "Postgres connection url. Don't set to use the provisioned Heroku Postgres",
"required": false
},
"CLIENT_ID": {
"description": "Discord bot client. Get one at https://discordapp.com/developers/applications/me/create"
},
"TOKEN": {
"description": "Discord bot token. Get one at https://discordapp.com/developers/applications/me/create"
},
"SENTRY_DSN": {
"description": "Sentry reporting URL. Get one at https://sentry.io",
"required": false
}
}
}