forked from dev-logesh/music-video-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
161 lines (157 loc) · 4.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
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
{
"name": "logi Music and video Bot",
"description": "A Telegram Music Bot with proper functions written in Python with Pyrogram and Py-Tgcalls.",
"repository": "https://github.com/LOGI-LAB/music-video-bot",
"logo": "https://mir-s3-cdn-cf.behance.net/project_modules/max_1200/1c63d830343079.564a747651c89.jpg",
"keywords": [
"python3",
"telegram",
"bot",
"Yukki",
"YukkiMusicBot",
"telegram-bot",
"pyrogram"
],
"repository": "https://github.com/notreallyshikhar/YukkiMusicBot",
"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
},
"BOT_TOKEN": {
"description": "A Bot's token from Botfather",
"value": "",
"required": true
},
"DURATION_LIMIT": {
"description": "Duration Limit for Playout (In Mins).. Example: 60",
"value": "60",
"required": true
},
"ASSISTANT_PREFIX": {
"description": "Prefix for Assistant Commands.",
"value": ".",
"required": true
},
"MONGO_DB_URI": {
"description": "Mongo DB URL",
"value": "",
"required": true
},
"MUSIC_BOT_NAME": {
"description": "A name for your Music Bot.",
"value": "",
"required": true
},
"SUPPORT_CHANNEL": {
"description": "Support Channel Link if you have any, Leave blank if no support. Your link must start with https://t.me/",
"value": "",
"required": false
},
"SUPPORT_GROUP": {
"description": "Support Group Link if you have any, Leave blank if no support. Your link must start with https://t.me/",
"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": "",
"required": true
},
"OWNER_USERNAME": {
"description": "fill with your telegram username (without @)",
"value": "",
"required": false
},
"STRING_SESSION1": {
"description": "A Pyrogram String Session. One Assistant is Compulsory.",
"value": "",
"required": true
},
"STRING_SESSION2": {
"description": "A Pyrogram String Session. Leave blank if you dont want Multi-Assistant",
"value": "",
"required": false
},
"STRING_SESSION3": {
"description": "A Pyrogram String Session. Leave blank if you dont want Multi-Assistant",
"value": "",
"required": false
},
"STRING_SESSION4": {
"description": "A Pyrogram String Session. Leave blank if you dont want Multi-Assistant",
"value": "",
"required": false
},
"STRING_SESSION5": {
"description": "A Pyrogram String Session. Leave blank if you dont want Multi-Assistant",
"value": "",
"required": false
},
"LOG_SESSION": {
"description": "A Pyrogram String Session for LOGGING. Leave blank if you dont want to LOG",
"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!. Use only Group. Please don't use Channel ID.",
"value": "",
"required": true
},
"SUDO_USERS": {
"description": "The user id(s) of user(s) whom you would like to add as a SUDO. Multiple values shall be seperated with a space.",
"value": "",
"required": true
},
"UPSTREAM_REPO": {
"description": "If you dont know this, Leave as it is",
"value": "https://github.com/LOGI-LAB/music-video-bot",
"required": true
},
"UPSTREAM_BRANCH": {
"description": "Repo's Branch Name",
"value": "master",
"required": true
}
},
"PING_IMG": {
"description": "For custom ping image, use telegra.ph link",
"value": "",
"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"
}