-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
app.json
86 lines (86 loc) · 2.59 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "Music Player",
"description": "A Telegram Music Bot written in Python using Pyrogram and Py-Tgcalls",
"logo": "https://github.com/AsmSafone/MusicPlayer/raw/master/theme/logo.png",
"stack": "container",
"keywords": [
"telegram",
"voicechat",
"userbot",
"music",
"player",
"python",
"pyrogram",
"py-tgcalls",
"musicplayer"
],
"env": {
"API_ID": {
"description": "Telegram app id, get it from https://my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "Telegram app hash, get it from https://my.telegram.org/apps",
"required": true
},
"BOT_TOKEN": {
"description": "Your telegram bot token, get it from https://t.me/botfather",
"required": false
},
"SESSION": {
"description": "Pyrogram session string, get it from https://replit.com/@AsmSafone/genStr",
"required": true
},
"SUDOERS": {
"description": "ID of sudo users who have special access (separate multiple ids with space)",
"required": false
},
"PREFIX": {
"description": "Bot commad prefix or handler (separate multiple prefix with space)",
"value": "!",
"required": false
},
"LANGUAGE": {
"description": "An available bot language (read the README.md for more info)",
"value": "en",
"required": false
},
"QUALITY": {
"description": "An available stream quality (read the README.md for more info)",
"value": "high",
"required": false
},
"STREAM_MODE": {
"description": "An stream mode like audio or video (read the README.md for more info)",
"value": "audio",
"required": false
},
"ADMIN_ONLY": {
"description": "Change it to 'True' if you want to make /play commands only for admins",
"value": "False",
"required": false
},
"SPOTIFY_CLIENT_ID": {
"description": "Spotify client id get it from https://developer.spotify.com/dashboard/applications",
"required": false
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Spotify client secret get it from https://developer.spotify.com/dashboard/applications",
"required": false
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
]
}