-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathapp.json
55 lines (55 loc) · 1.69 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
{
"addons": [],
"buildpacks": [],
"description": "A modular Telegram Music Bot using pytgcalls.",
"env": {
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"API_ID": {
"description": "Get this value from my.telegram.org.",
"required": true
},
"HEROKU_APPNAME": {
"description": "Add the Heroku app name here. Required for updates.",
"required": true
},
"HEROKU_KEY": {
"description": "Heroku API key, get it from 'https://dashboard.heroku.com/account. Required for updates.",
"required": true
},
"MAX_ASSISTANT_COUNT": {
"description": "Maximum assistant count for recognize ASSISTANT_TOKENn variables.",
"required": false,
"value": "4"
},
"ASSISTANT_TOKEN1": {
"description": "First assistant token. You can add more assistant accounts like ASSISTANT_TOKEN2, ASSISTANT_TOKEN3, ...",
"required": true
},
"BOT_OWNER": {
"description": "Bot owner's user id. PM is used to log errors for now.",
"required": true
},
"BOT_TOKEN": {
"description": "Bot token for manage assistant accounts.",
"required": true
}
},
"formation": {
"hedoshi": {
"quantity": 1,
"size": "eco"
}
},
"keywords": [
"telegram",
"music",
"module",
"pyrogram"
],
"name": "Hedoshi Music Bot",
"repository": "https://gitlab.com/frknkrc44/hedoshimusicbot",
"stack": "container"
}