-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
41 lines (41 loc) · 989 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"logo": "https://raw.githubusercontent.com/SurPathHub/brand-assets/main/Resources/SurPath%20Hub%20Logos/SPH_transparent.png",
"name": "Dayong",
"description": "Discord Bot for SurPath Hub's server",
"env": {
"BOT_TOKEN": {
"description": "The jumble of letters and numbers that acts as a key to controlling a Discord Bot"
},
"EMAIL": {
"description": "The email address subscribed to a service (i.e. Medium Daily Digest)",
"required": false
},
"EMAIL_PASSWORD": {
"description": "The email account's password.",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"addons": [
{
"plan": "heroku-postgresql:hobby-dev",
"options": {
"version": "13"
},
"as": "DATABASE"
}
],
"buildpacks": [
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
]
}