-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
33 lines (33 loc) · 921 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
{
"name": "Instagram Tools Telegram Bot",
"description": "This bot will fetch instagram account details, downloads post",
"repository": "https://github.com/varundeva/instagram-tools-telegram-bot",
"keywords": [
"telegram",
"pyrogram",
"telegram bot"
],
"env": {
"ENV": {
"description": "Set it to anything to enable configuration by environment variables.",
"value": "True"
},
"BOT_TOKEN": {
"description": "Your Bot token from @Botfather",
"value": ""
},
"CHANNEL_ID": {
"description": "Get Your Telegram Channel ID. know more at Readme file of repository",
"value": ""
},
"HOST_NAME": {
"description": "Your Host Name. that is heroku url for your app",
"value": ""
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}