forked from Monk-xD/MonkMusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
71 lines (71 loc) · 2.36 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
{
"name": "Monk-Music Robot",
"description": "Telegram Bot for streaming music trough the Telegram Group video chat feature.",
"keywords": ["music", "py-tgcalls", "pyrogram", "telegram"],
"repository": "https://github.com/Monk-xD/MonkMusicBot",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "fill with the pyrogram session string",
"required": true
},
"OWNER_ID": {
"description": "fill with your telegram id as the owner of the bot",
"required": true
},
"ASS_ID": {
"description": "fill with the telegram id of account you used for the assistant/userbot",
"required": true
},
"LOG_GROUP_ID": {
"description": "create a private group and get the group id and fill the group id here, Then add the assistant and bot as admin to the group",
"required": true
},
"API_ID": {
"description": "your Api ID from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "your Api Hash from my.telegram.org/apps",
"required": true
},
"SUDO_USERS": {
"description": "fill with the id of user who can access the sudo feature in your bot (for multiple IDs separate with space)",
"required": true
},
"BOT_TOKEN": {
"description": "fill with your bot token get from @BotFather on telegram",
"required": true
},
"SUPPORT": {
"description": "Fill with TeleGram group username without @",
"required": true
},
"UPDATES": {
"description": "Fill with telegram channel username without @",
"required": true
},
"MONGO_DB_URI": {
"description": "fill with the mongodb url (this is needed for the database). Get it from mongodb.cloud.com",
"required": true
}
},
"addons": [],
"buildpacks": [
{
"url": "heroku/python"
},
{
"url": "heroku/nodejs"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}