forked from unknown-01-hacker/ELIZABETH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
166 lines (166 loc) ยท 4.75 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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
{
"name": "๐ฎ๐ฝ๐๐๐๐พ๐",
"description": "A Powerful Telegram Bot written in PTB and Telethon",
"logo": "https://telegra.ph/file/d7fc94f41b336b8f4ff15.jpg",
"keywords": ["telegram-bot"],
"repository": "https://github.com/Apollothewolf/elizabeth.git",
"env": {
"TL_APP_ID": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"TL_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"TOKEN": {
"description": "Get your bot token from @botfather",
"value": "",
"required": true
},
"SQLALCHEMY_DATABASE_URI": {
"description": "No need change",
"required": false,
"value": "sqldbtype://username:pw@hostname:port/db_name"
},
"ENV": {
"description": "Set this to ANYTHING..",
"value": "ANYTHING"
},
"API_OPENWEATHER": {
"description": "Get your own APPID from https://api.openweathermap.org/data/2.5/weather",
"value": "",
"required": false
},
"IBM_WATSON_CRED_URL": {
"description": "This is required for the speech to text module. Get your USERNAME from https://console.bluemix.net/docs/services/speech-to-text/getting-started.html",
"required": false
},
"IBM_WATSON_CRED_PASSWORD": {
"description": "This is required for the speech to text module. Get your PASSWORD from https://console.bluemix.net/docs/services/speech-to-text/getting-started.html",
"required": false
},
"GBAN_LOGS": {
"description": "The group id for logging all gbans.. โ ๏ธ Remember:- You must add your bot to that group..",
"value": "",
"required": true
},
"DONATION_LINK": {
"description": "Enter Donation link..",
"required": false,
"value": "https://t.me/Risk_Girl"
},
"SUDO_USERS": {
"description": "List of user id's who will have SUDO rights in your bot(they can't be banned/warned etc. by the bot)",
"value": "1368052515",
"required": false
},
"SUPPORT_USERS": {
"description": "Support users Id's.",
"required": false,
"value": "1331325830"
},
"WHITELIST_USERS": {
"description": "Whitelist user Id's.",
"required": false,
"value": "1331325830"
},
"DEV_USERS": {
"description": "Developers id",
"required": false,
"value": "1368052515"
},
"WEBHOOK": {
"description": "Nothing here.",
"required": false,
"value": ""
},
"PORT": {
"description": "No need change.",
"required": false,
"value": ""
},
"YOUTUBE_API_KEY": {
"description": "Place your YouTube API Key here",
"value": "",
"required": false
},
"OWNER_ID": {
"description": "An integer of consisting of your ID",
"value": "",
"required": true
},
"TEMP_DOWNLOAD_DIRECTORY": {
"description": "Do not edit this.",
"value": "./",
"required": false
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "",
"required": true
},
"DEL_CMDS": {
"description": "Delete devs cmds from users",
"value": "False",
"required": false
},
"CUSTOM_CMD": {
"description": "Custom command handler..",
"required": false,
"value": ""
},
"URL": {
"description": "The Heroku App URL :- edit this to your app name https://your app name.herokuapp.com/",
"required": false,
"value": ""
},
"MESSAGE_DUMP": {
"description": "A chat for logging bot events.. โ ๏ธ Remember :- You must add your bot to that group.. Otherwise telethon modules never works.. Eg songs etc๐",
"value": "",
"required": true
},
"TIME_API_KEY": {
"description": "Required for timezone information",
"value": "",
"required": false
},
"CASH_API_KEY": {
"description": "Required for currency converter",
"value": "",
"required": false
},
"WALL_API": {
"description": "Get one from https://wall.alphacoders.com/api.php",
"value": "",
"required": false
},
"ALLOW_EXCL": {
"description": "No need change",
"value": "True"
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned",
"value": "True",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
]
}