-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
48 lines (48 loc) · 1.3 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
{
"name": "MusicBot",
"description": "Music Bot",
"keywords": [
"MusicBot",
"Telegrambot",
"ShazamBot",
"PyrogramMusicBot"
],
"repository": "https://github.com/Masterrockiei/luci",
"website": "https://github.com/Masterrockiei",
"success_url": "https://github.com/Masterrockiei/luci",
"env": {
"API_ID": {
"description": "Your api_id get it from https",
"required": "True",
"value": "//my.telegram.org",
"generator": "secret"
},
"API_HASH": {
"description": "Your api_hash get it from https",
"required": "True",
"value": "//my.telegram.org",
"generator": "secret"
},
"BOT_TOKEN": {
"description": "Get it from @Botfather",
"required": "True"
},
"ADMINS": {
"description": "Your Telegram ID",
"required": "True",
"value": "1342641151"
},
"GROUP_ID": {
"description": "Your Group ID Where the bot should work",
"required": "True",
"value": "-100002794"
}
},
"stack": "heroku-20",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}