-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathapp.json
More file actions
119 lines (118 loc) · 3.52 KB
/
app.json
File metadata and controls
119 lines (118 loc) · 3.52 KB
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
{
"name":"Telegram Userbot",
"description":"Custom kang of the famous Paperplane userbot by @RaphielGang with some of my fav modules.",
"logo":"https://i.imgur.com/ATSG4w3.png",
"keywords":[
"telegram",
"userbot",
"plugin",
"modular",
"productivity"
],
"repository":"https://github.com/AvinashReddy3108/Telegram-UserBot",
"website":"https://github.com/RaphielGang/Telegram-UserBot/wiki",
"success_url":"https://t.me/userbot_announcements",
"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 locally.",
"value":""
},
"CHROME_DRIVER":{
"description":"ChromeDriver location.",
"value":"/app/.chromedriver/bin/chromedriver"
},
"GOOGLE_CHROME_BIN":{
"description":"Headless GoogleChrome location.",
"value":"/app/.apt/usr/bin/google-chrome"
},
"OPEN_WEATHER_MAP_APPID":{
"description":"Get your own APPID (API key)from https://api.openweathermap.org/data/2.5/weather",
"required":false
},
"SCREENSHOT_LAYER_ACCESS_KEY":{
"description":"Get your own ACCESS_KEY (API key) from http://api.screenshotlayer.com/api/capture",
"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":"False"
},
"BUILD_CHOICE":{
"description":"Build Choice Bleeding or Stable",
"value":"Stable"
},
"YOUTUBE_API_KEY":{
"description":"YouTube Data API Key for .yt command. Get from https://console.cloud.google.com",
"required":false
},
"DEFAULT_BIO":{
"description":"Set a default bio to be shown when you are not listening on Spotify..",
"required":false
},
"SPOTIFY_USERNAME":{
"description":"Put your Spotify Username (your Spotify username).",
"required":false
},
"SPOTIFY_PASS":{
"description":"Put your Spotify Password.",
"required":false
},
"SPOTIFY_BIO_PREFIX":{
"description":"Put the prefix that you want to show while you listen to music",
"required":false
},
"WELCOME_MUTE":{
"description":"Mute some known spammer bots after they join.",
"value":"False"
},
"UPDATER":{
"description":"Keep this 'False' if using Heroku !!",
"value":"False"
}
},
"addons":[
{
"plan":"heroku-postgresql",
"options":{
"version":"9.5"
}
}
],
"buildpacks":[
{
"url":"https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},
{
"url":"heroku/python"
},
{
"url":"heroku-community/apt"
},
{
"url":"https://github.com/heroku/heroku-buildpack-chromedriver"
},
{
"url":"https://github.com/heroku/heroku-buildpack-google-chrome"
}
]
}