-
Notifications
You must be signed in to change notification settings - Fork 32
/
app.json
51 lines (51 loc) · 1.38 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
{
"name": "Asad Alexa Vc Userbot",
"description": "A Telegram Userbot To Play Audio And Video Songs in Voice Chat",
"logo": "https://telegra.ph/file/7fbaae079e71659672dde.jpg",
"keywords": [
"Telegram",
"VCBot",
"MusicPlayer"
],
"repository": "https://github.com/Lost-In-Dark/TG-MusicPlayer",
"env": {
"SESSION": {
"description": "Pyrogram String Session @Pyrogram_String_Bot",
"required": true
},
"API_ID": {
"description": "my.telegram.org",
"required": true
},
"API_HASH": {
"description": "my.telegram.org",
"required": true
},
"HNDLR": {
"description": "Handler | Default (/)",
"value": "/",
"required": false
},
"GROUP_MODE": {
"description": "Anyone can play, if set to True. Set it to False to restrict play access to Sudo Users/Contacts only",
"value": "True",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"stack": "container"
}