forked from UsergeTeam/Userge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
155 lines (155 loc) · 5.12 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "Userge",
"description": "telegram pluggable userbot",
"logo": "https://imgur.com/download/Inyeb1S",
"keywords": [
"userge",
"telegram",
"pluggable",
"userbot"
],
"repository": "https://github.com/UsergeTeam/Userge",
"website": "https://github.com/Userge",
"success_url": "https://t.me/theUserge",
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org"
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org"
},
"HU_STRING_SESSION": {
"description": "Get it by running `bash genStr` command or ignore this",
"required": false
},
"BOT_TOKEN": {
"description": "Get this from https://t.me/botfather if you like to use userge as a bot",
"required": false
},
"OWNER_ID": {
"description": "Your user_id if you are gonna use userge as a bot",
"required": false
},
"WORKERS": {
"description": "Userbot Workers Count : Default = 4",
"required": false
},
"DATABASE_URL": {
"description": "Mongodb url from https://cloud.mongodb.com/"
},
"G_DRIVE_CLIENT_ID": {
"description": "Googel Drive API Keys from https://console.developers.google.com/"
},
"G_DRIVE_CLIENT_SECRET": {
"description": "Googel Drive API Keys from https://console.developers.google.com/"
},
"G_DRIVE_IS_TD": {
"description": "Set True if it is TeamDrive",
"value": "True"
},
"LOG_CHANNEL_ID": {
"description": "Telegram Log Channel ID"
},
"G_DRIVE_INDEX_LINK": {
"description": "Index link for gdrive",
"required": false
},
"LOAD_UNOFFICIAL_PLUGINS": {
"description": "Set True if your like to use unofficial plugins",
"required": false
},
"DOWN_PATH": {
"description": "Set name to your working directory",
"required": false
},
"PREFERRED_LANGUAGE": {
"description": "Your Languge ( ex: if english => 'en' )",
"required": false
},
"CURRENCY_API": {
"description": "get API key from 'https://free.currencyconverterapi.com'",
"required": false
},
"OCR_SPACE_API_KEY": {
"description": "get OCR API key from 'http://eepurl.com/bOLOcf'",
"required": false
},
"WEATHER_DEFCITY": {
"description": "add default city for weather",
"required": false
},
"OPEN_WEATHER_MAP": {
"description": "Weather API get it from 'https://openweathermap.org/",
"required": false
},
"ANTISPAM_SENTRY": {
"description": "Toggle API Auto Bans, Active if set to True",
"required": false
},
"SPAM_WATCH_API": {
"description": "SpamWatch API get it from @SpamWatch in Telegram",
"required": false
},
"REMOVE_BG_API_KEY": {
"description": "RemoveBg API Key get it from https://www.remove.bg/api",
"required": false
},
"G_DRIVE_PARENT_ID": {
"description": "GDrive Folder ID",
"required": false
},
"HEROKU_APP_NAME": {
"description": "given app name to the heroku app",
"required": false
},
"HEROKU_API_KEY": {
"description": "get a Heroku API key from http://dashboard.heroku.com/account",
"required": false
},
"UPSTREAM_REPO": {
"description": "set this to your USERGE fork on GitHub",
"required": false
},
"CMD_TRIGGER": {
"description": "set command prefix",
"required": false
},
"SUDO_TRIGGER": {
"description": "set command prefix for SUDO users",
"required": false
},
"FINISHED_PROGRESS_STR": {
"description": "single character for finished progress",
"required": false
},
"UNFINISHED_PROGRESS_STR": {
"description": "single character for unfinished progress",
"required": false
}
},
"addons": [
],
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
}, {
"url": "https://github.com/HasibulKabir/heroku-buildpack-rarlab.git"
}, {
"url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip"
}, {
"url": "https://github.com/rking32/heroku-buildpack-google-chrome"
}, {
"url": "https://github.com/rking32/heroku-buildpack-chromedriver"
}, {
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
}, {
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}