-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.json
61 lines (61 loc) · 1.79 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
{
"name": "Bot Status Checker",
"description": "Telegram Bot Written In Python Using Pyrogram To Check Bots Status",
"repository": "https://github.com/M4hbod/Bot-Status-Checker",
"keywords": [
"BotStatus",
"How to check your bots are alive or not",
"Up or down",
"Check status of bots",
"Telegram userbot",
"Pyrogram userbot"
],
"env": {
"API_ID": {
"description": "Get from my.telegram.org/apps",
"required": true
},
"API_HASH": {
"description": "Get from my.telegram.org/apps",
"required": true
},
"SESSION_STRING": {
"description": "Fill with pyrogram session string",
"required": true
},
"BOT_LIST": {
"description": "Your bot username list without '@' (Example: MakhusicBot OceanThiefBot)",
"required": true
},
"CHANNEL_OR_GROUP_ID": {
"description": "Your channel's or group's Telegram id (Example: -1001246808642)",
"required": true
},
"MESSAGE_ID": {
"description": "Telegram id of message from your channel or group (Example: 10)",
"required": true
},
"BOT_ADMIN_IDS": {
"description": "fill with your id (Example: 123456 678905)"
},
"TIME_ZONE": {
"description": "Your time zone (Example: Asia/Kolkata)",
"required": true
},
"CHECK_DELAY": {
"description": "Delay between each check in seconds (Example: 3600)",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}