-
Notifications
You must be signed in to change notification settings - Fork 7
/
app.json
92 lines (92 loc) · 2.45 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
{
"name": "UserBot",
"description": "Telegram UserBot",
"logo": "https://i.imgur.com/ZLi4nDP.jpg",
"keywords": [
"telegram",
"userbot",
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/Yasir-siddiqui/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": ""
},
"OPEN_WEATHER_MAP_APPID": {
"description": "Get your own APPID from https://api.openweathermap.org/data/2.5/weather",
"required": false
},
"SCREEN_SHOT_LAYER_ACCESS_KEY": {
"description": "Get your own ACCESS_KEY from http://api.screenshotlayer.com/api/capture",
"required": false
},
"LOGGER": {
"description": "Incase you want to turn off logging, put this to false",
"value": "",
"required": false
},
"CHROME_DRIVER":{
"description": "for Carbon module to work.",
"value": "/usr/bin/chromedriver",
"required": true
},
"GOOGLE_CHROME_BIN":{
"description": "Google Chrome Binary for scraping modules",
"value": "/usr/bin/chromium-browser",
"required": true
},
"is_Heroku": {
"description": "Set to true if you using bot on heroku",
"value": true,
"required": true
},
"LOGGER_GROUP": {
"description": "ChatID for the Log group",
"value": "",
"required": false
},
"CONSOLE_LOGGER_VERBOSE": {
"description": "If you need Verbosity on the Logging",
"value": "",
"required": false
},
"PM_AUTO_BAN": {
"description": "PM Auto-Ban Feature Switch",
"required": false
},
"BUILD_CHOICE": {
"description": "Build Choice Bleeding or Stable",
"required": false
},
"UPDATER": {
"description": "*cough* Heroku *cough*.",
"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"
}]
}