-
Notifications
You must be signed in to change notification settings - Fork 58
/
app.json
73 lines (73 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "Telegram Video Stream Bot",
"description": "An Telegram Bot By @ZauteKm To Stream Videos in Voice Chat",
"repository": "https://github.com/ZauteKm/VideoStreamBot/tree/master",
"logo": "https://telegra.ph/file/117de96dbfbfea2ce59a6.png",
"stack": "container",
"keywords": [
"telegram",
"voicechat",
"bot",
"video",
"player",
"python",
"pyrogram",
"pytgcalls",
"videoplayer"
],
"env": {
"API_ID": {
"description": "User Account Telegram API_ID get it from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "User Account Telegram API_HASH get it from my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Your Telegram Bot Token, get it from @Botfather XD",
"required": true
},
"SESSION_STRING": {
"description": "Pyrogram Session String of User Account, get it from https://replit.com/@ZauteKm/GenerateStringSession#main.py",
"required": true
},
"SUDO_USERS": {
"description": "ID of Sudo Users who can use Admin commands (for multiple users seperated by space)",
"required": true
},
"ASSISTANT_NAME": {
"description": "Your Video Player's assistant Username without @.",
"required": true
},
"SUPPORT_GROUP": {
"description": "Support Group username without @ [Leave this if you don't have one]",
"required": false,
"value": "jospsupportbot"
},
"UPDATES_CHANNEL": {
"description": "Updates Channel username without @ [Leave this if you don't have one].",
"required": false,
"value": "Josprojects"
},
"REPLY_MESSAGE": {
"description": "A reply message to those who message the USER account in PM. Make it blank if you do not need this feature.",
"value": "Hello Sir, I'm a bot to stream videos on telegram voice chat, not having time to chat with you 😂!",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}