forked from code-pms/MyGpack
-
Notifications
You must be signed in to change notification settings - Fork 23
/
app.json
61 lines (60 loc) · 2.11 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
{
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org"
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org"
},
"DATABASE_URL": {
"description": "Mongodb url from https://cloud.mongodb.com/, guide: https://del.dog/mongodb_guide"
},
"HEROKU_APP_NAME": {
"description": "Given app name to the Heroku App"
},
"LOG_CHANNEL_ID": {
"description": "[ Private Telegram Log Channel ID ], Note: Also add your Bot to LOG CHANNEL !"
},
"HEROKU_API_KEY": {
"description": "[Required] Get a Heroku API key from http://dashboard.heroku.com/account",
"required": false
},
"HU_STRING_SESSION": {
"description": "Get this using 'https://repl.it/@Leorio/stringsessiongen' or `bash genStr`",
"required": false
},
"BOT_TOKEN": {
"description": "Get this from https://t.me/botfather and enable Inline Mode. (ADD YOUR BOT IN LOG CHANNEL)",
"required": false
},
"UPSTREAM_REPO": {
"description": "fill only if you maintain a fork !, else leave empty",
"required": false,
"value": "https://github.com/ashwinstr/UX-jutsu"
},
"OWNER_ID": {
"description": "Your user_id(s) e.g 123456789 or mutiple ids",
"required": false
},
"PREF_BRANCH": {
"description": "Upstream repo preffered branch. (Dont Touch This !)",
"required": false,
"value": "alpha"
}
},
"stack": "heroku-20",
"buildpacks": [
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{ "url": "https://github.com/ashwinstr/heroku-buildpack-noto-fonts" },
{ "url": "https://github.com/HasibulKabir/heroku-buildpack-rarlab.git" },
{ "url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip" },
{ "url": "https://github.com/ashwinstr/heroku-buildpack-google-chrome" },
{ "url": "https://github.com/ashwinstr/heroku-buildpack-chromedriver" },
{ "url": "https://github.com/chrismytton/heroku-buildpack-jq.git" },
{ "url": "https://github.com/justaprudev/heroku-buildpack-neofetch.git" },
{ "url": "https://github.com/dishapatel010/mediainfo_buildpack.git" },
{ "url": "heroku/python" }
]
}