forked from arquimago/LoLWikiBot
-
Notifications
You must be signed in to change notification settings - Fork 10
/
app.json
38 lines (38 loc) · 979 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
{
"name": "GDG Aracaju Bot",
"description": "O GDG Aracaju Bot é um bot de Telegram com a função principal de informar eventos no Meetup",
"repository": "https://github.com/GDGAracaju/GDGAjuBot",
"logo": "https://node-js-sample.herokuapp.com/node.png",
"keywords": ["telegram", "bot", "meetup"],
"image": "heroku/python",
"stack": "heroku-18",
"env": {
"TELEGRAM_TOKEN": {
"description": "Token da API para bots do Telegram."
},
"MEETUP_KEY": {
"description": "Chave da API do Meetup.com."
},
"GROUP_NAME": {
"description": "Nome do grupo no Meetup.com."
},
"URL_SHORTENER_KEY": {
"description": "Chave da API URL Shortener do Google.",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
]
}