forked from RaphielGang/Telegram-Paperplane
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
126 lines (126 loc) · 3.81 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "Telegram Userbot",
"description": "A Modular Telegram Userbot.",
"logo": "https://i.imgur.com/ZLi4nDP.jpg",
"keywords": [
"telegram",
"userbot",
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/noobvishal/Userbot",
"website": "https://telegra.ph/How-to-host-a-Telegram-Userbot-07-24",
"success_url": "https://t.me/PaperplaneExtended",
"stack": "container",
"env": {
"API_KEY": {
"description": "Get this value from my.telegram.org.",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org.",
"value": ""
},
"STRING_SESSION": {
"description": "Get this value by running [python3 string_session.py] in Termux or local system.",
"value": ""
},
"CHROME_DRIVER": {
"description": "ChromeDriver location.",
"value": "/usr/bin/chromedriver"
},
"GOOGLE_CHROME_BIN": {
"description": "Google Chrome (or) Chromium binary location.",
"value": "/usr/bin/chromium-browser"
},
"OPEN_WEATHER_MAP_APPID": {
"description": "Get your own APPID (API key)from https://api.openweathermap.org/data/2.5/weather",
"required": false
},
"BOTLOG": {
"description": "Incase you want to turn off logging, put this to false",
"value": "False"
},
"BOTLOG_CHATID": {
"description": "ChatID for the Log group",
"value": "0"
},
"CONSOLE_LOGGER_VERBOSE": {
"description": "If you need Verbosity on the Logging",
"value": "False"
},
"PM_AUTO_BAN": {
"description": "PM Auto-Ban Feature Switch",
"value": "TRUE"
},
"YOUTUBE_API_KEY": {
"description": "YouTube Data API Key for .yt command. Get from https://console.cloud.google.com",
"required": false
},
"OCR_SPACE_API_KEY": {
"description": "OCR API Key for .ocr command. Get from https://ocr.space/ocrapi",
"required": false
},
"REM_BG_API_KEY": {
"description": "API Key for .rbg command. Get from https://www.remove.bg/api",
"required": false
},
"ANTI_SPAMBOT": {
"description": "Kicks spambots from groups after they join. [Requires admin powers in groups to kick.]",
"value": "False"
},
"ANTI_SPAMBOT_SHOUT": {
"description": "Report spambots to @admins in groups after they join, just in case when you don't have admin powers to kick that shit yourself.",
"value": "False"
},
"TMP_DOWNLOAD_DIRECTORY": {
"description": "Download location for many modules (GDrive, .download etc..)",
"value": "./downloads/"
},
"CLEAN_WELCOME": {
"description": "Deletes old welcome messages; when a new person joins, the old message is deleted.",
"value": "True"
},
"G_DRIVE_CLIENT_ID": {
"description": "Enter Your Client ID for Google Drive.",
"required": false
},
"LASTFM_API": {
"description": "API Key for Last.FM module. [Get one from - https://www.last.fm/api/account/create]",
"required": false
},
"LASTFM_SECRET": {
"description": "SECRET Key for Last.FM module. [Get one from - https://www.last.fm/api/account/create]",
"required": false
},
"LASTFM_USERNAME": {
"description": "Last.FM Username",
"required": false
},
"LASTFM_PASSWORD": {
"description": "Last.FM Password",
"required": false
},
"BIO_PREFIX": {
"description": "Prefix for Last.FM Module Bio.",
"required": false
},
"DEFAULT_BIO": {
"description": "Default profile bio.",
"required": false
},
"G_DRIVE_CLIENT_SECRET": {
"description": "Enter Your Client Secret for Google Drive.",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}