-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
48 lines (48 loc) · 1.18 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
{
"name": "Radio Player Bitpattern",
"description": "Radio in groups",
"repository": "https://github.com/donc-py/radiopy.git",
"logo": "",
"keywords": [
"radio",
"telegram",
"userbot",
"voicechat",
"radioplayer",
"python",
"pyrogram",
"pytgcalls",
"tgcalls",
"voip"
],
"env": {
"API_ID": {
"description": "api_id part of your Telegram API Key from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "api_hash part of your Telegram API Key from my.telegram.org/apps",
"required": true
},
"SESSION": {
"description": "Session string, read the README to learn how to export it with Pyrogram",
"required": true
},
"ADMIN": {
"description": "Your user ID, who can control the userbot",
"required": true
},
"CHAT_NAME": {
"description": "The channel/group username where to stream radio (without @)",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}