-
Notifications
You must be signed in to change notification settings - Fork 1k
/
app.json
110 lines (110 loc) · 4.29 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
{
"name": "Paperplane userbot project",
"description": "A modular Telegram userbot running on Python3, which can be coupled up with Mongo DB and a Redis backend.",
"logo": "https://camo.githubusercontent.com/c9497896ad221daba6cb84f897e7ec00ba46f430/68747470733a2f2f74656c656772612e70682f66696c652f3733636634633632623263363466393831393631652e706e67",
"keywords": [
"telegram",
"userbot",
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/RaphielGang/Telegram-Paperplane",
"website": "https://github.com/RaphielGang/Telegram-Paperplane",
"success_url": "#TODO",
"stack": "container",
"env": {
"API_KEY": {
"description": "Get from https://my.telegram.org/.",
"required": true
},
"API_HASH": {
"description": "Get from https://my.telegram.org/.",
"required": true
},
"STRING_SESSION": {
"description": "Generate using generate_string_session.py.",
"required": true
},
"HEROKU_APIKEY": {
"description": "Get from 'https://dashboard.heroku.com/account'. It's neede for userbot updates.",
"required": false
},
"HEROKU_APPNAME": {
"description": "Add the Heroku app name here. It's needed for userbot updates.",
"required": false
},
"MONGO_DB_URI": {
"description": "Your MongoDB Atlas URL.",
"required": true
},
"SCREENSHOT_ACCESS_LAYER_KEY": {
"description": "Screenshot Layer API Key for .screenshot command. Get from https://screenshotlayer.com/. Please refer to README for getting the key.",
"required": false
},
"OPEN_WEATHER_MAP_APPID": {
"description": "OpenWeather Map API Key for .weather command. Get from https://openweathermap.org/.",
"required": false
},
"BOTLOG": {
"description": "In case you want to turn on logging, set this True.",
"value": "False",
"required": false
},
"BOTLOG_CHATID": {
"description": "Chat ID for Botlog. Get it from group management bots such as Rose, or using the .chatid Paperplane command.",
"value": "0",
"required": false
},
"CONSOLE_LOGGER_VERBOSE": {
"description": "If you want verbosity on the Logging.",
"value": "False",
"required": false
},
"PM_AUTO_BAN": {
"description": "PM Auto-Ban Feature Switch.",
"value": "False",
"required": false
},
"SPOTIPY_CLIENT_ID": {
"description": "Spotify Client ID (API Key). Get from from https://developer.spotify.com/dashboard.",
"required": false
},
"SPOTIPY_CLIENT_SECRET": {
"description": "Spotify Client Secret (API Hash). Get from from https://developer.spotify.com/dashboard.",
"required": false
},
"SPOTIPY_SESSION": {
"description": "Spotify Session String. Get with scripts/generate_spotify_session.py script.",
"required": false
},
"LASTFM_API": {
"description": "API Key for Last.FM module. Get from https://www.last.fm/api/account/create.",
"required": false
},
"LASTFM_SECRET": {
"description": "SECRET Key for Last.FM module. Get 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
},
"WELCOME_MUTE": {
"description": "Detect and mute spambots which match the Paperplane algorithm after they join a group. Use at your own risk, the algorithm is in beta stage.",
"required": false
},
"GDRIVE_FOLDER": {
"description": "Google Drive upload folder.",
"required": false
},
"WOLFRAM_ID": {
"description": "Wolfram ID. Get an API KEY from products.wolframalpha.com/api/.",
"required": false
}
}
}