-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathapp.json
58 lines (58 loc) · 1.8 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": "Bot Status Checker",
"description": "This bot will check bots listed in a channel and add mark if any bot is offline",
"keywords": [
"telegram",
"check",
"bot",
"offline"
],
"repository": "https://github.com/Sallat-M/BotsChecker",
"env": {
"API_ID": {
"description": "Get it from https://my.telegram.org"
},
"API_HASH": {
"description": "Get it from https://my.telegram.org"
},
"String_Session": {
"description": "Pyrogram String Session"
},
"DataBase_Link": {
"description": "MongoDB Link"
},
"DataBase_Name": {
"description": "DataBase Name"
},
"Channel_ID": {
"description": "The channel you want to check bots listed in it"
},
"Offline_Mark": {
"description": "This mark will added after bot username if it is offline",
"value": "🔴"
},
"Send_Time": {
"description": "Wait for this period before checking another bot (in seconds)",
"value": "7"
},
"UserName_Time": {
"description": "Wait for this period after checking the bot by username (in seconds)",
"value": "120"
},
"Time_Out": {
"description": "Wait for this period for any bot to respond (in seconds)",
"value": "5"
},
"Sleep_Time": {
"description": "Wait for this period before checking all bots again (in seconds)",
"value": "7200"
}
},
"stack": "heroku-20",
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}