Skip to content

Commit 920657b

Browse files
authored
Initial Commit
1 parent 2ac4817 commit 920657b

File tree

1 file changed

+86
-0
lines changed

1 file changed

+86
-0
lines changed

app.json

Lines changed: 86 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
{
2+
"name": "UʟᴛʀᴏɴMᴜsɪᴄ RᴏBᴏ",
3+
"description": "A sᴜᴘᴇʀʙ Tᴇʟᴇɢʀᴀᴍ VᴏɪᴄᴇCʜᴀᴛ Pʟᴀʏᴇʀ. 𝑷𝒐𝒘𝒆𝒓𝒆𝒅 𝒃𝒚 𝑼𝒍𝒕𝒓𝒐𝒏𝑹𝒐𝑩𝒐",
4+
"repository": "https://github.com/UltronRoBo/UltronMusic",
5+
"stack": "container",
6+
"keywords": [
7+
"telegram",
8+
"bot",
9+
"voicechat",
10+
"music",
11+
"python",
12+
"pyrogram",
13+
"pytgcalls",
14+
"tgcalls",
15+
"voip",
16+
"ultron"
17+
],
18+
"env": {
19+
"API_ID": {
20+
"description": "api_id part of your Telegram API Key from my.telegram.org/apps",
21+
"required": true
22+
},
23+
"API_HASH": {
24+
"description": "api_hash part of your Telegram API Key from my.telegram.org/apps",
25+
"required": true
26+
},
27+
"BOT_TOKEN": {
28+
"description": "Bot token of Bot, get from @BotFather",
29+
"required": true
30+
},
31+
"ARQ_API": {
32+
"description": "get it for free from @ARQRobot",
33+
"required": false
34+
},
35+
"SESSION_STRING": {
36+
"description": "Session string, read the README to learn how to export it with Pyrogram",
37+
"required": true
38+
},
39+
"CHAT": {
40+
"description": "ID of Channel or Group where the Bot plays Music",
41+
"required": true
42+
},
43+
"LOG_GROUP": {
44+
"description": "ID of the group to send playlist If CHAT is a Group, if channel thenleave blank",
45+
"required": false
46+
},
47+
"ADMINS": {
48+
"description": "ID of Users who can use Admin commands(for multiple users seperated by space)",
49+
"required": true
50+
},
51+
"ADMIN_ONLY": {
52+
"description": "Change it to 'N' if you want to make /play and /dplay available for everyone. By default only admins of CHAT can use it.",
53+
"value": "Y",
54+
"required": false
55+
},
56+
"MAXIMUM_DURATION": {
57+
"description": "Maximum duration of song to be played using /play or /dplay",
58+
"value": "15",
59+
"required": false
60+
},
61+
"STREAM_URL": {
62+
"description": "URL of Radio station or Youtube live video url to stream with /radio command",
63+
"value": "",
64+
"required": false
65+
},
66+
"REPLY_MESSAGE": {
67+
"description": "A reply message to those who message the USER account in PM. Make it blank if you do not need this feature.",
68+
"value": "Hemlo Sur, Me iz a bot to play music, not havimg time to chat with you, somrry.",
69+
"required": false
70+
}
71+
},
72+
"formation": {
73+
"worker": {
74+
"quantity": 1,
75+
"size": "free"
76+
}
77+
},
78+
"buildpacks": [
79+
{
80+
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
81+
},
82+
{
83+
"url": "heroku/python"
84+
}
85+
]
86+
}

0 commit comments

Comments
 (0)