-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathapp.json
More file actions
53 lines (53 loc) · 1.53 KB
/
app.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "status bot",
"description": "Easy & powerful bot to check if your all Telegram bots are working or not.",
"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": "A valid Pyrogram session string",
"required": true
},
"BOT_TOKEN": {
"description": "A valid bot token get from @botfather",
"required": true
},
"BOT_LIST": {
"description": "Your bot username list without '@' (Example: Maybexsessionbot MaybexhackBot)",
"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
},
"OWNER_ID": {
"description": "Owner id (Example: 3579864213)",
"required": true
},
"TIME_ZONE": {
"description": "Your time zone (Example: Asia/Kolkata)",
"required": true
}
},
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
]
}