-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
26 lines (24 loc) · 815 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
{
"name": "Text to shareable LinK Converter",
"description": "A telegram bot ro generate shareable link from a text.",
"logo": "https://telegra.ph/file/237b8e50b9f3badcd55b7.jpg",
"keywords": [
"Share Url Gen","Telegram Bot"
],
"repository": "https://github.com/ashkar2001/shareurlbotv1",
"env": {
"API_ID": {"description": "Get this value from https://my.telegram.org", "required": true},
"API_HASH": {"description": "Get this value from https://my.telegram.org" , "required": true},
"BOT_TOKEN": {"description": "Get Bot Token From BotFather Bot","required": true}
},
"buildpacks": [
{"url": "heroku/python"}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}