-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
87 lines (87 loc) · 2.47 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
87
{
"name": "AlinaXMusic",
"logo": "https://telegra.ph/file/36ff1b571aa11df5812de.jpg",
"description": "Open-Source bot to play songs in your Telegram's Group Voice Chat. Powered by PyTgCalls.",
"keywords": ["music", "voicechat", "telegram"],
"repository": "https://github.com/TeamAlinaX/AlinaXMusic",
"stack": "container",
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url": "heroku/python"
}
],
"env": {
"SESSION_NAME": {
"description": "Pyrogram session string",
"required": true
},
"BOT_TOKEN": {
"description": "A bot token from @BotFather",
"required": true
},
"BOT_USERNAME": {
"description": "Your bot's username without @",
"required": true
},
"BOT_NAME": {
"description": "Your MusicPlayer Bot Name.",
"required": false,
"value": ""
},
"SUPPORT_GROUP": {
"description": "Your MusicPlayer support group without @ [Leave this if you don't have one]",
"required": false,
"value": "AlinaXSupport"
},
"PROJECT_NAME": {
"description": "Your MusicPlayer project Name.",
"required": false,
"value": "AlinaXMusic v5"
},
"ASSISTANT_NAME": {
"description": "Your MusicPlayer's assistant Username without @.",
"required": true
},
"ARQ_API_KEY": {
"description": "Get from @ARQRobot.",
"required": false,
"value": ""
},
"BG_IMAGE": {
"description": "BG image of bot (Use transparent one) [IGNORE].",
"required": false,
"value": "https://te.legra.ph/file/3472b977c24b3428417f9.jpg"
},
"UPDATES_CHANNEL": {
"description": "Updates Channel without @ [Leave this if you don't have one].",
"required": false,
"value": "AlinaXUpdates"
},
"API_ID": {
"description": "App ID from my.telegram.org/apps",
"required": true
},
"PMPERMIT": {
"description": "Change to turn off",
"required": false,
"value": "ENABLE"
},
"API_HASH": {
"description": "App hash from my.telegram.org/apps",
"required": true
},
"SUDO_USERS": {
"description": "List of user IDs counted as admin everywhere (separated by space).",
"required": true
"value" : "1871877574"
},
"DURATION_LIMIT": {
"description": "Max audio duration limit for downloads (minutes).",
"required": true,
"value": "30"
}
}
}