-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
app.json
58 lines (58 loc) · 1.6 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
{
"name": "Tag Logger Bot",
"description": "Simple Bot for notify you in a Group when you were Tagged.",
"keywords": [
"telegram",
"tags",
"logs",
"bot",
"pyrogram",
"jayantkageri",
"taglogger bot",
"taglogger"
],
"repository": "https://github.com/divideprojects/TagLogger",
"website": "https://github.com/jayantkageri",
"success_url": "https://github.com/jayantkageri",
"env": {
"HEROKU": {
"description": "Setting this to ANYTHING will enable Heroku, turned on by default!",
"value": "ANYTHING"
},
"API_ID": {
"description": "Get this value from my.telegram.org or @useTGXbot",
"required": true
},
"API_HASH": {
"description": "Get this value from my.telegram.org or @useTGXbot",
"required": true
},
"BOT_TOKEN": {
"description": "Get this from @BotFather",
"required": true
},
"SESSION": {
"description": "Pyrogram String Session",
"required": true
},
"GROUP_ID": {
"description": "Logs Group ID for some Tracking. Example: -100123456789",
"value": "-100123456789",
"required": true
}
},
"buildpacks": [
{
"url": "https://github.com/moneymeets/python-poetry-buildpack.git"
},
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}