-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
92 lines (91 loc) · 2.67 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":"Userge-X MyGpackEdition",
"description":"Userge-X Userbot",
"logo":"https://i.imgur.com/PlXD0aL.png",
"keywords":[
"Yo"
],
"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",
"required":false
},
"BUILD_CMD":{
"description":"do not touch this.",
"required":true
},
"INSTALL_CMD":{
"description":"do not touch this.",
"required":true
},
"LAUNCH_CMD":{
"description":"do not touch this.",
"required":true
},
"ZIP_LINK":{
"description":"ZIP file link.",
"required":true
},
"OWNER_ID":{
"description":"Your user_id e.g 123456789",
"required":false
}
},
"addons":[
],
"buildpacks":[
{
"url":"https://github.com/heroku/heroku-buildpack-apt.git"
},
{
"url":"https://github.com/HasibulKabir/heroku-buildpack-rarlab.git"
},
{
"url":"https://github.com/opendoor-labs/heroku-buildpack-p7zip"
},
{
"url":"https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest.git"
},
{
"url":"https://github.com/code-rgb/heroku-buildpack-google-chrome"
},
{
"url":"https://github.com/code-rgb/heroku-buildpack-chromedriver"
},
{
"url":"https://github.com/chrismytton/heroku-buildpack-jq.git"
},
{
"url":"heroku/python"
}
],
"formation":{
"worker":{
"quantity":1,
"size":"free"
}
}
}