-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
124 lines (124 loc) · 3.31 KB
/
app.json
File metadata and controls
124 lines (124 loc) · 3.31 KB
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
{
"name": "titan",
"description": "telegram pluggable userbot",
"logo": "https://imgur.com/download/Inyeb1S",
"keywords": [
"titan",
"telegram",
"pluggable",
"userbot"
],
"repository": "https://github.com/CurseIsLove/Titan",
"website": "https://github.com/CurseIsLove",
"success_url": "https://t.me/titansupport",
"env": {
"ENV": {
"description": "Fill this if you using environ variable as config.",
"value": "ANYTHING"
},
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value": ""
},
"MONGODB_URL": {
"description": "Mongodb url from https://cloud.mongodb.com/ fill FOR EXTRA non heroku database",
"value": "",
"required": false
},
"LOG_CHANNEL_ID": {
"description": "Telegram Log Channel ID",
"value": ""
},
"HU_STRING_SESSION": {
"description": "[USER MODE] - Get this using 'https://GenUserGeString.usergeuserbot.repl.run' or `bash genStr`",
"value": ""
},
"BOT_TOKEN": {
"description": "[BOT MODE] - Get this from https://t.me/botfather",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "[BOT MODE] - Your user_id",
"value": "",
"required": false
},
"HEROKU_APP_NAME": {
"description": "given app name to the heroku app",
"value": ""
},
"HEROKU_API_KEY": {
"description": "get a Heroku API key from http://dashboard.heroku.com/account",
"value": ""
},
"remove_bg_api": {
"description": "(optional) Register at : https://www.remove.bg/",
"value": "",
"required": false
},
"lydia_api": {
"description": "(optional) Fill in your Coffeehouse API, get from https://coffeehouse.intellivoid.net",
"value": "",
"required": false
},
"bitly_token": {
"description": "(optional) Register at : https://http://app.bitly.com/ profile settings -> generic access token",
"value": "",
"required": false
},
"BOT_IMG": {
"description": "(optional) Url of a photo to show up in your Assistant",
"value": "",
"required": false
},
"ASSISTANT_WORKER": {
"description": "(optional) Worker for Assistant bot",
"value": "2",
"required": false
},
"BOT_WORKER": {
"description": "(optional) Worker for User bot",
"value": "8",
"required": false
},
"ASSISTANT_SESSION": {
"description": "make string session with bot token",
"value": ""
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"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/chrismytton/heroku-buildpack-jq.git"
},
{
"url": "heroku/python"
}
]
}