-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
69 lines (69 loc) · 2.28 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
{
"name": "Epic Music",
"logo": "https://telegra.ph/file/89cbc8b8760b6abff430f.jpg",
"description": "A SuperFast VC Player bot to play songs in Telegram Video Chat. Powered by PyTgCalls.",
"keywords": ["music", "voicechat", "telegram", "fallen"],
"repository": "https://github.com/EpicBotSl/EpicMusic",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "Pyrogram String Session of assistant account",
"required": true
},
"BOT_TOKEN": {
"description": "Get this value from @BotFather on TG",
"required": true
},
"BOT_NAME": {
"description": "A name for your MusicPlayer Bot",
"required": false,
"value": ""
},
"BOT_USERNAME": {
"description": "Username of your bot without @",
"required": false,
"value": ""
},
"API_ID": {
"description": "Get this value from my.telegram.org/apps",
"required": false
},
"API_HASH": {
"description": "Get this value from from my.telegram.org/apps",
"required": false
},
"OWNER_USERNAME": {
"description": "Username of the person who will known as owner of the bot, without @",
"required": false,
"value": "anonymous_was_bot"
},
"SUPPORT_GROUP": {
"description": "Username of the group where users will go and disturb you, without @",
"required": false,
"value": "DevilsHeavenMF"
},
"SUDO_USERS": {
"description": "User IDs of the users who will counted as admin everywhere (if more than one separate them by space).",
"required": true,
"value": "1356469075"
},
"START_IMG": {
"description": "Telegraph link of the pic which you want to set as the start pic of your bot",
"required": false
},
"PING_IMG": {
"description": "Telegraph link of the pic which you want to set as the ping pic of your bot",
"required": false
},
"PMPERMIT": {
"description": "If you want to notify users who pm to assistant account that it's the assistant account of your bot so don't spam messages there (ENABLE/DISABLE).",
"required": false,
"value": "ENABLE"
},
"DURATION_LIMIT": {
"description": "Max audio duration limit for downloads (minutes).",
"required": false,
"value": "90"
}
}
}