-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.2 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.2 KB
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
{
"name": "Vcmusic-Userbot",
"description": "A Simple Telegram Userbot to play Songs in Voice Chat",
"logo": "https://telegra.ph/file/1e227b2f1cac607fa6763.jpg",
"keywords": [
"Telegram",
"Vcmusic",
"MusicPlayer"
],
"repository": "https://github.com/KennedyProject/Vcmusic-Userbot",
"env": {
"SESSION": {
"description": "Pyrogram String Session from replit.com",
"required": true
},
"API_ID": {
"description": "get it from my.telegram.org",
"required": true
},
"API_HASH": {
"description": "get it from my.telegram.org",
"required": true
},
"HNDLR": {
"description": "Your handler for play etc. The default handler is (!)",
"value": "!",
"required": false
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
}