This repository has been archived by the owner on Sep 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
49 lines (49 loc) · 1.43 KB
/
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
41
42
43
44
45
46
47
48
49
{
"name": "Telegram Cloud Uploads Manager Bot",
"description": "A Telegram Cloud Uploads Manager Bot by @trtechguide",
"keywords": [
"telegram",
"cloud",
"upload",
"manager",
"bot"
],
"repository": "https://github.com/TR-TECH-GUIDE/Cloud-Up-Manager",
"website": "https://trtechguide.wordpress.com",
"success_url": "https://t.me/trtechguide",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org"
},
"API_HASH": {
"description": "Get this value from my.telegram.org"
},
"BOT_TOKEN": {
"description": "Get this from @BotFather"
},
"STREAMTAPE_API_USERNAME": {
"description": "Streamtape API Username. Get this from https://streamtape.com/accpanel#collapseThree"
},
"STREAMTAPE_API_PASS": {
"description": "Streamtape API Password. Get this from https://streamtape.com/accpanel#collapseThree"
},
"BOT_OWNER": {
"description": "Bot Owner UserID",
"required": false
},
"LOG_CHANNEL": {
"description": "Logs Channel ID for some Tracking XD. Example: -100123456789"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}