-
Notifications
You must be signed in to change notification settings - Fork 292
/
Copy pathapp.json
67 lines (67 loc) · 2.42 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
{
"name": "This is Telegram Messages Forwarder Userbot by @AbirHasan2005",
"description": "This is Telegram Messages Forwarder Userbot in Pyrogram by @AbirHasan2005",
"keywords": [
"telegram",
"messages",
"forwarder",
"userbot"
],
"repository": "https://github.com/AbirHasan2005/Forward-Client",
"website": "https://telegram.dog/AbirHasan2005",
"success_url": "https://t.me/Discovery_Updates",
"env": {
"API_ID": {
"description": "Get this value from my.telegram.org or @TeleORG_Bot"
},
"API_HASH": {
"description": "Get this value from my.telegram.org or @TeleORG_Bot"
},
"STRING_SESSION": {
"description": "Get this from @StringSessionGen_Bot"
},
"FORWARD_FROM_CHAT_ID": {
"description": "Forward From Chat IDs. Separate with Space."
},
"FORWARD_TO_CHAT_ID": {
"description": "Forward To Chat IDs. Separate with Space."
},
"FORWARD_FILTERS": {
"description": "Filters can be `text`, `video`, `document`, `gif`, `sticker`, `photo`, `audio`, `poll`, `forwarded`. Separate with Space.",
"required": false
},
"BLOCKED_EXTENSIONS": {
"description": "Don't Forward those Media Messages which contains Blocked Extensions. Example: `mp4 mkv mp3 zip rar`. Separate with Space.",
"required": false
},
"MINIMUM_FILE_SIZE": {
"description": "Minimum File Size for Media Message to be able to Forward. Should be in Bytes.",
"required": false
},
"BLOCK_FILES_WITHOUT_EXTENSIONS": {
"description": "Value can be `True`/`False`. If `True` those files which doesn't have file extension will not be Forwarded.",
"required": false
},
"HEROKU_API_KEY": {
"description": "Put Heroku API Key from https://dashboard.heroku.com/account"
},
"HEROKU_APP_NAME": {
"description": "Your Heroku App Name."
},
"FORWARD_AS_COPY": {
"description": "Forward Messages as Copy or with Forward Tag. Value should be True/False.",
"required": false
}
},
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}