forked from DoellBarr/solidmusic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
56 lines (56 loc) · 1.74 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
{
"name": "MM music repo",
"description": "Open Source bot to stream media trough Telegram Voice Chat",
"repository": "https://github.com/marrk85/MMmusic",
"stack": "container",
"env": {
"API_ID": {
"description": "Fill it with your API_ID, get it from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "Fill it with your API_HASH, get it from my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Fill it with your Bot token, get it from @BotFather",
"required": true
},
"OWNER_ID": {
"description": "Fill it with your telegram id, not api id",
"required": true
},
"SESSION": {
"description": "Fill it with your assistant session string",
"required": true
},
"GROUP_LINK": {
"description": "your group support link, can use private or public group, example https://t.me/oangelangelangelo",
"required": false,
"value": "https://t.me/oangelangelangelo"
},
"CHANNEL_LINK": {
"description": "your channel support link, can use private or public channel, example https://t.me/oangelangelangelo",
"required": false,
"value": "https://t.me/oangelangelangelo"
},
"UPSTREAM_REPO": {
"description": "fill it if you fork from original repo",
"required": false,
"value": "https://github.com/marrk86/MMmusic"
},
"AUTO_LEAVE": {
"description": "fill it with delay time for leaving group, fill 0 if you do not want to use this feature",
"required": false,
"value": "0"
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
]
}