-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
34 lines (34 loc) · 905 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
{
"name": "Lyrics bot",
"description": "A Telegram Bot that can get lyrics.",
"repository": "https://github.com/sanila2007/telegram-lyrics-bot",
"keywords": [
"lyrics bot",
"pyrogram bot",
"lyrics",
"Telegram bot"
],
"env": {
"API_ID": {
"description": "Get from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "Get from my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Get from Telegram's @BotFather",
"required": true
},
"TOKEN": {
"description": "Client access token from Genius.com API CLIENT",
"required": true
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}