-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathapp.json
60 lines (60 loc) · 1.77 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
50
51
52
53
54
55
56
57
58
59
60
{
"name": "Video Stream X Bot",
"description": "bot to stream video on telegram video chat, powered by pytgcalls and pyrogram , Project @dihanofficial",
"logo": "https://telegra.ph/file/3cf3743ea2c2235623edd.jpg",
"keywords": [
"pytgcalls",
"telegram bot",
"video stream"
],
"website": "https://fzbots.me",
"repository": "https://github.com/MOnster-ZeroX/Video-Stream-X-Bot",
"success_url": "https://t.me/FZBOTS",
"env": {
"API_ID": {
"description": "Your APP_ID from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "Your API_HASH from my.telegram.org",
"required": true
},
"BOT_TOKEN": {
"description": "Your bot token from @botfather",
"required": true
},
"BOT_USERNAME": {
"description": "Your bot username from @botfather",
"required": true
},
"ASSISTANT_NAME": {
"description": "Fill with the assistant username account without @",
"required": true
},
"SESSION_NAME": {
"description": "Fill with the pyrogram String Session",
"required": true
},
"SUDO_USERS": {
"description": "List of user ids to be added to sudo member list",
"required": true
},
"DURATION_LIMIT": {
"description": "Maximum duration limit for downloadable videos (in minutes)",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "heroku-20"
}