forked from GTBERNO/AutoDelete-V2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
52 lines (52 loc) · 1.14 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
{
"name": "AutoDelete-V2",
"description": "delete group messages after a specific time",
"keywords": [
"telegram",
"delete",
"bot"
],
"repository": "https://github.com/Arun-TG/AutoDelete-V2",
"logo": "https://telegra.ph/file/8cd549b2beef98e83349e.jpg",
"env": {
"BOT_TOKEN": {
"description": "Get it from @Botfather",
"value": ""
},
"API_ID": {
"description": "Your telegram API ID, Get it from my.telegram.org",
"value": ""
},
"API_HASH":{
"description": "Your telegram API HASH, Get it from my.telegram.org",
"value": ""
},
"SESSION":{
"description": "Pyrogram session generated from the link in Readme",
"value": ""
},
"ADMINS":{
"description": "ID of admins",
"value": ""
},
"GROUPS":{
"description": "ID of the groups where the bot work (seperate by spaces)",
"value": ""
},
"TIME": {
"description": "Time in seconds",
"value": "300"
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}