forked from missemily22/MultiFunctionBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapp.json
149 lines (149 loc) · 3.97 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
{
"name": "MultiFunctionBot",
"description": "Telegram Bot to bypass Short Links, get direct DLs & also Shorten URLs",
"keywords": [
"telegram",
"bypass",
"dlgen",
"shortener",
"adlinks",
"python",
"bot"
],
"repository": "https://github.com/missemily22/MultiFunctionBot/",
"success_url": "/",
"env": {
"API_ID": {
"description": "Get this value from https://my.telegram.org",
"value":"",
"required": true
},
"API_HASH": {
"description": "Get this value from https://my.telegram.org",
"value":"",
"required": true
},
"BOT_TOKEN": {
"description": "Get this value from @BotFather",
"value":"",
"required": true
},
"OWNER_ID": {
"description": "User ID of the Bot Owner (controls sensitive Bot Information!). Add values seperated by space",
"value":"",
"required": true
},
"SUDO_USERS": {
"description": "Sudo Users who can control the Bot. Add values seperated by space",
"value":"",
"required": true
},
"UPSTREAM_REPO": {
"description": "Add the Upstream Repo of your Bot for automatic updation. Add values seperated by space",
"value":"-1",
"required": false
},
"BOT_USERNAME": {
"description": "Your Bot userName Without `@`",
"value":"",
"required": true
},
"BIFM_URL": {
"description": "Your BIFM Instance URL(Use Default)",
"value":"https://bifm.tacohitbox.com/api/bypass?url",
"required": true
},
"EMILY_API_URL": {
"description": "Your Emily Bypass API Instance URL(Use Default)",
"value":"https://api.emilyx.in/api",
"required": true
},
"TELEGRAPH_NAME": {
"description": "Put a Telegr.ph / graph.org UserName to generate Token",
"value":"MultiFunction",
"required": true
},
"TELEGRAPH_LINK": {
"description": "Put a Telegr.ph / graph.org Author Link to generate Token",
"value":"https://github.com/missemily22",
"required": true
},
"GDTOT_CRYPT": {
"description": "Put your GDTot Crypt",
"value":"",
"required": false
},
"UNIFIED_EMAIL": {
"description": "Put your Generated Unified Email",
"value":"",
"required": false
},
"UNIFIED_PASS": {
"description": "Put your Generated Unified Pass",
"value":"",
"required": false
},
"HUBDRIVE_CRYPT": {
"description": "Put your HubDrive Crypt",
"value":"",
"required": false
},
"KATDRIVE_CRYPT": {
"description": "Put your KatDrive Crypt",
"value":"",
"required": false
},
"KOLOP_CRYPT": {
"description": "Put your Kolop Crypt",
"value":"",
"required": false
},
"DRIVEFIRE_CRYPT": {
"description": "Put your DriveFire Crypt",
"value":"",
"required": false
},
"DRIVEBUZZ_CRYPT": {
"description": "Put your DriveBuzz Crypt",
"value":"",
"required": false
},
"GADRIVE_CRYPT": {
"description": "Put your GaDrive Crypt",
"value":"",
"required": false
},
"JIODRIVE_CRYPT": {
"description": "Put your JioDrive Crypt",
"value":"",
"required": false
},
"Sharerpw_XSRF": {
"description": "Put your Sharer XSRF Token",
"value":"",
"required": false
},
"Sharerpw_laravel": {
"description": "Put your Sharer Laravel Session",
"value":"",
"required": false
},
"UPTOBOX_TOKEN": {
"description": "Put your UptoBox Account Token (Free Account works too!)",
"value":"",
"required": false
}
},
"stack": "container",
"buildpacks": [
{
"url": "heroku/python"
}
],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}