-
Notifications
You must be signed in to change notification settings - Fork 114
/
Copy pathapp.json
94 lines (91 loc) · 2.76 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
{
"name": "TrickyAbhi-Music",
"logo": "",
"description": "TrickyAbhi-Music allow you to stream music trought the telegram voice chat feature.",
"keywords": [
"music",
"voice chat",
"telegram"
],
"repository": "https://github.com/SJMxADITI/TryMusic",
"stack": "container",
"env": {
"SESSION_NAME": {
"description": "fill with the pyrogram session string",
"required": true
},
"BOT_TOKEN": {
"description": "fill with your bot token from @BotFather",
"required": true
},
"BOT_USERNAME": {
"description": "fill with your bot username from @BotFather Note put without '@' ",
"required": true
},
"OWNER_NAME": {
"description": "fill YOUR USERNAME WITHOUT '@' .",
"value": "ABHIISH3K_xD",
"required": false
},
"ALIVE_NAME": {
"description": "PUT YOUR BOT NAME .",
"value": "𝗛𝗘𝗥𝗢𝗫 𝗠𝗨𝗦𝗜𝗖",
"required": false
},
"BOT_NAME": {
"description": "PUT YOUR BOT NAME.",
"value": "𝗛𝗘𝗥𝗢𝗫 𝗠𝗨𝗦𝗜𝗖",
"required": true
},
"DURATION_LIMIT": {
"description": "PUT YOUR BOT duration time.",
"value": "70",
"required": true
},
"GROUP_SUPPORT": {
"description": "PUT YOUR group username without @.",
"value": "TrickyAbhii_Op",
"required": true
},
"UPDATES_CHANNEL": {
"description": "PUT YOUR channel username without @.",
"value": "Techno_Trickop",
"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
},
"ASSISTANT_NAME": {
"description": "fill with the assistant username without @",
"required": true
},
"SUDO_USERS": {
"description": "fill with the user id who can access all function in your bot (separate with space) .",
"value": "5124507794 5198403647",
"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"
}
}
}