forked from Ns-Bots/TG-RENAMER-BOT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
84 lines (78 loc) · 2.61 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
{
"name": "TG Renamer Bot",
"description": "The Telegram file renamer bot based on Pyrogram.",
"logo": "https://telegra.ph/file/8324a0863fed98d4dfb6c.jpg",
"keywords": [
"telegram",
"bot",
"best",
"renamer"
],
"repository": "https://github.com/Gaxi2/TG-RENAMER-BOT",
"stack": "heroku-20",
"website": "https://t.me/Ns_bot_updates",
"success_url": "https://t.me/RenamerNs_bot",
"env": {
"API_HASH": {
"description": "Your API_HASH, Get it from https://my.telegram.org/"
},
"API_ID": {
"description": "Your API_ID, Get it from https://my.telegram.org/"
},
"AUTH_USERS": {
"description": "list of Auth user Id who can access bot without password and have rights to use admin commands",
"required": false
},
"BANNED_USERS": {
"description": "list of banned users whom you want to stop from using your bot sperate each user by whitespace.",
"required": false
},
"BOT_TOKEN": {
"description": "Get it from @BotFather"
},
"BOT_PASSWORD": {
"description": "If you want to use the bot private you can set a password to use only by your.",
"required": false
},
"CUSTOM_CAPTION": {
"description": "A default caption to be added to the file at bottom",
"required": false
},
"FORCE_SUB": {
"description": "A telegram channel username without @ to force users to join channel before using bot.",
"required": false
},
"OWNER_ID": {
"description": "Your Telegram user id, Get this from @FileStore_Nsbot."
},
"ENV": {
"description": "Set it to anything to enable configuration by environment variables.",
"value": "ANYTHING"
},
"TIME_GAP": {
"description": "Set the timegap in sec to reduce FloodWait. If you don't want to add leave empty. ",
"required": false
},
"TRACE_CHANNEL": {
"description": "A telegram channel or group id to know who are using bot",
"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"
}
}
}