-
Notifications
You must be signed in to change notification settings - Fork 25
/
app.json
92 lines (92 loc) · 3.04 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
{
"name": "M8N Music Bot v2.0",
"description": "Telegram Music Bot from Team M8N allows you to stream music trought the telegram voice chat feature !!",
"logo": "https://telegra.ph/file/7c8fc17112d22814da2e9.jpg",
"keywords": ["telegram music bot", "voice chat", "pytgcalls"],
"repository": "https://github.com/UnknownMortal/Music-Bot-v2",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "fill with the pyrogram session string of your assistant account",
"required": true
},
"OWNER_ID": {
"description": "fill with your telegram id as the owner of the bot",
"required": true,
"value": "5058236569"
},
"OWNER_USERNAME": {
"description": "fill with the bot owner username without @",
"required": true,
"value": "Its_romeoo"
},
"ASSID": {
"description": "fill with telegram id of your assistant account",
"required": true,
"value": ""
},
"ASSNAME": {
"description": "fill with telegram name of your assistant account",
"required": true,
"value": ""
},
"ASSUSERNAME": {
"description": "fill with telegram username of your assistant account without @",
"required": true,
"value": ""
},
"BOT_ID": {
"description": "fill with telegram id of your bot",
"required": true,
"value": ""
},
"BOT_USERNAME": {
"description": "fill with telegram username of bot without @",
"required": true,
"value": ""
},
"BOT_NAME": {
"description": "fill with telegram name of bot",
"required": true,
"value": ""
},
"SUPPORT": {
"description": "fill with your bot support group, please fill valid username",
"required": false,
"value": "M8N_SUPPORT"
},
"UPDATE": {
"description": "fill with your bot update channel, please fill valid username",
"required": false,
"value": "M8N_OFFICIAL"
},
"API_ID": {
"description": "your Api ID from my.telegram.org/apps",
"required": true,
"value": ""
},
"API_HASH": {
"description": "your Api Hash from my.telegram.org/apps",
"required": true,
"value": ""
},
"BOT_TOKEN": {
"description": "fill with your bot token get from @BotFather on telegram",
"required": true,
"value": ""
},
"MONGO_DB_URI": {
"description": "fill with the mongodb url get from mongodb.com (don't use mine below !)",
"required": true,
"value": ""
}
},
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "heroku/python"
}
]
}