-
Notifications
You must be signed in to change notification settings - Fork 3
/
app.json
167 lines (167 loc) · 5.08 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
167
{
"name": "Creminal",
"description": "A simple Telegram userbot based on Telethon ",
"logo": "https://telegra.ph/file/35438cbed2cee60d31ffc.jpg",
"keywords": [
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/Youngchris150/Creminal/",
"website": "#TODO",
"success_url": "#TODO",
"env": {
"ALIVE_NAME": {
"description": "give your name",
"value": ""
},
"APP_ID": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"API_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": ""
},
"STRING_SESSION": {
"description": "Get this value by running python3 telesetup.py locally or https://replit.com/@chrisdroid1/Creminal#main.py",
"value": ""
},
"TG_BOT_USERNAME": {
"description": "Needed for inline buttons maker. Make a bot at http://telegram.dog/BotFather and get the username of your bot",
"value": ""
},
"TG_BOT_TOKEN": {
"description": "Needed for inline buttons maker. Make a bot at http://telegram.dog/BotFather and get the token of your bot.Worth it. Get it.",
"value": ""
},
"COMMAND_HAND_LER": {
"description": "Set this one with only one the symbol to use it before your command to run like . , ' `",
"value": ".",
"required": false
},
"ENV": {
"description": "Setting this to ANYTHING will enable heroku.",
"value": "ANYTHING",
"required": false
},
"HEROKU_API_KEY": {
"description": "Required for updating the bot and other stuff get it from https://dashboard.heroku.com/account",
"value": "",
"required": false
},
"ALIVE_NAME": {
"description": "Alive Name in the bot",
"value": "",
"required": false
},
"PRIVATE_GROUP_BOT_API_ID": {
"description": "create a private channel and then type .get_id add that value here for save messages",
"value": ""
},
"SUDO_USERS": {
"description": "Allow others to use your bot",
",value": "",
"required": false
},
"PM_LOGGER_GROUP_ID": {
"description": "for logging PM",
"value": ""
},
"PRIVATE_CHANNEL_BOT_API_ID": {
"description": "for frwd",
"value": ""
},
"NO_OF_BUTTONS_DISPLAYED_IN_H_ME_CMD": {
"description": "you should know lol",
"value": "8",
"required": false
},
"CUSTOM_PMPERMIT_TEXT": {
"description": "message for PMPermit",
"value": "",
"required": false
},
"CUSTOM_ALIVE_TEXT": {
"description": "change custom alive text",
"value": "",
"required": false
},
"NO_OF_COLOUMS_DISPLAYED_IN_H_ME_CMD": {
"description": "you should know lol",
"value": "2",
"required": false
},
"SUDO_USERS": {
"description": "Users you want to give access to your bot. (Don't allow unknown people)",
"value": "",
"required": false
},
"PRIVATE_GROUP_ID": {
"description": "Same value as PRIVATE_GROUP_BOT_API_ID. Must read https://telegra.ph/userbot-Setup-06-06 for knowing how to get the value. Required for pmpermit.",
"value": "",
"required": true
},
"HEROKU_APP_NAME": {
"description": "YOUR app name ",
"value": "",
"required": false
},
"MAX_FLOOD_IN_PMS": {
"description": "Number of messages one can send in your PM before being approved. By default, it is 5.",
"value": "5",
"required": false
},
"OCR_SPACE_API_KEY": {
"description": "Required for OCR functionality. Get from https://ocr.space/ocrapi",
"value": "",
"required": false
},
"REM_BG_API_KEY": {
"description": "Required for Removing image background functionality. Get from https://www.remove.bg/",
"value": "",
"required": false
},
"ALIVE_PIC": {
"description": "telegra.ph link to theimage you want as pic when you put .awake, leave blank for Default",
"value": "",
"required": false
},
"PMPERMIT_PIC": {
"description": "telegra.ph link to theimage you want as pmpermit pic, leave blank for default one!",
"value": "",
"required": false
},
"TZ": {
"description": "Required for Correct Time on autopic/get time. Know your timezone from http://www.timezoneconverter.com/cgi-bin/findzone.tzc",
"value": "Asia/Kolkata",
"required": false
},
"UPSTREAM_REPO": {
"description": "if you need custom deploy then type your git repo link",
"value": "Creminal",
"required": false
}
},
"addons": [{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}],
"buildpacks": [{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
},{
"url":"https://github.com/heroku/heroku-buildpack-google-chrome"
},{
"url":"https://github.com/heroku/heroku-buildpack-chromedriver"
},{
"url": "https://github.com/opendoor-labs/heroku-buildpack-p7zip"
},{
"url": "https://github.com/heroku/heroku-buildpack-apt.git"
},{
"url": "https://github.com/chrismytton/heroku-buildpack-jq"
},{
"url": "heroku/python"
}]
}