forked from yash-dk/Mesh-RenameBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
88 lines (85 loc) · 2.58 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "Mesh Rename Bot",
"description": "This bot is aimed to be the best rename bot around.",
"keywords": [
"rename bot",
"telegram"
],
"success_url": "https://t.me/MeshBots",
"website": "https://github.com/yash-dk/Mesh-RenameBot",
"repository": "https://github.com/Gubera24/Mesh-RenameBot",
"stack": "heroku-20",
"env": {
"API_HASH": {
"description": "Input your API HASH from Telegram."
},
"API_ID": {
"description": "Input your API ID from Telegram."
},
"BOT_TOKEN": {
"description": "Telegram Bot Token."
},
"COMPLETED_STR": {
"description": "The symbol that represents the completed part of progress.",
"required": false
},
"REMAINING_STR": {
"description": "The symbol that represents the remaining part of progress.",
"required": false
},
"MAX_QUEUE_SIZE": {
"description": "Max rename to perform simultaneously. int(number)",
"required": false
},
"SLEEP_SECS": {
"description": "Wait in between edits of the progress update. int(number)",
"required": false
},
"IS_MONGO": {
"description": "Is the database URL provided MONGO DB.",
"required": false
},
"IS_PRIVATE": {
"description": "Is this bot for private use? true/false",
"required": false
},
"OWNER_ID": {
"description": "ID of the owner.",
"required": false
},
"FORCEJOIN": {
"description": "Enter the user name(with @) or invite link of the chat that the use should join. Keep blank to disable.",
"required": false
},
"FORCEJOIN_ID": {
"description": "ID of the chat for which is specified in FORCEJOIN.",
"required": false
},
"TRACE_CHANNEL": {
"description": "ID of the channel to which the track of the uses is sent who are using the bot. Put 0 for no tracking.",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}