-
Notifications
You must be signed in to change notification settings - Fork 27
/
app.json
40 lines (40 loc) · 985 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
{
"name" : "URL Uploader Bot",
"description" : "This bot can accept direct downloading url and then return file as telegram file.",
"keywords" : [
"telegram",
"bot",
"heroku",
"python",
"telethon",
"app.json",
"app",
"url",
"uploader"
],
"repository" : "https://github.com/AJTimePyro/URL_Uploader_Bot",
"success_url" : "https://t.me/URL_UploaderAJ_Bot",
"env" : {
"BOT_TOKEN" : {
"description" : "Get From https://t.me/BotFather"
},
"API_ID" : {
"description" : "Get From https://my.telegram.org"
},
"API_HASH" : {
"description" : "Get From https://my.telegram.org"
}
},
"stack" : "heroku-20",
"buildpacks" : [
{
"url" : "heroku/python"
}
],
"formation" : {
"worker" : {
"quantity" : 1,
"size" : "free"
}
}
}