forked from UsergeTeam/Userge
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
115 lines (112 loc) · 3.58 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
{
"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": {
"APP_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
},
"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"
},
"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
},
"WEATHER_DEFCITY": {
"description": "add default city for weather",
"required": false
},
"OPEN_WEATHER_MAP": {
"description": "Weather API get it from 'https://openweathermap.org/",
"required": false
},
"G_DRIVE_PARENT_ID": {
"description": "GDrive Folder ID",
"required": false
},
"LOG_CHANNEL_ID": {
"description": "Telegram Log Channel 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
}
},
"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/heroku/heroku-buildpack-google-chrome"
}, {
"url": "https://github.com/heroku/heroku-buildpack-chromedriver"
}, {
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
}, {
"url": "heroku/python"
}
],
"formation": {
"worker": {
"quantity": 1,
"size": "free"
}
}
}