forked from AnonymousR1025/AnonXMusic
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
130 lines (130 loc) · 3.91 KB
/
app.json
File metadata and controls
130 lines (130 loc) · 3.91 KB
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "ᴀɴᴏɴダᴍᴜsɪᴄ",
"description": "A Telegram Music Player Bot, written in Python with Pyrogram and Py-Tgcalls.",
"logo": "https://telegra.ph/file/56d1760224589ee370186.jpg",
"keywords": [
"python3",
"telegram",
"bot",
"AnonX",
"MusicBot",
"telegram-bot",
"pyrogram"
],
"stack": "container",
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": "",
"required": true
},
"AUTO_LEAVING_ASSISTANT": {
"description": "If you want your assistant to leave all chats automatically after some time.",
"value": "False",
"required": true
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "",
"required": true
},
"DURATION_LIMIT_MIN": {
"description": "Maximum duration that your bot can play in minutes.",
"value": "90",
"required": true
},
"MONGO_DB_URI": {
"description": "Get a mongodb url from https://cloud.mongodb.com.",
"value": "",
"required": false
},
"AUTO_DOWNLOADS_CLEAR": {
"description": "Fill True if you want to automatically clear the downloaded files after playing.",
"value": "True",
"required": true
},
"MUSIC_BOT_NAME": {
"description": "A name for your Music Bot. You can use special characters bot ko jhaat farak ni padega",
"value": "ᴀɴᴏɴ ダ ᴍᴜsɪᴄ",
"required": false
},
"SPOTIFY_CLIENT_ID": {
"description": "Spotify Client Id",
"value": "",
"required": false
},
"SPOTIFY_CLIENT_SECRET": {
"description": "Spotify client secret",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "The user id(s) of user(s) whom you would like to add as a OWNER. Multiple values shall be seperated with a space.",
"value": "1356469075",
"required": true
},
"STRING_SESSION": {
"description": "A Pyrogram String Session. One Assistant is Compulsory.",
"value": "",
"required": true
},
"PING_IMG_URL": {
"description": "The pic which will be shown when you give the /ping cmd to the bot.",
"value": "",
"required": false
},
"START_IMG_URL": {
"description": "The pic which will be shown when you /start the bot in private.",
"value": "",
"required": false
},
"HEROKU_API_KEY": {
"description": "Your Heroku account's API key",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "Your heroku app/bot's name",
"value": "",
"required": false
},
"LOG_GROUP_ID": {
"description": "Your Log Group ID, add your bot and promote as an admin with full rights!. Channel ki id mat daal dena bsdk.",
"value": "",
"required": true
},
"SUPPORT_GROUP": {
"description": "Link of your support group ! Channel ki id mat daal dena bsdk.",
"value": "https://t.me/DevilsHeavenMF",
"required": false
},
"SUPPORT_CHANNEL": {
"description": "Link of your telegram channel.",
"value": "https://t.me/Akhand_Words",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"stack": "container"
}