-
-
Notifications
You must be signed in to change notification settings - Fork 176
/
app.json
170 lines (166 loc) · 5.26 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
168
169
170
{
"addons": [
{
"options": {
"version": "12"
},
"plan": "heroku-postgresql"
}
],
"description": "Modular Telegram bot for managing your groups with a few extras features.",
"env": {
"ALLOW_EXCL": {
"description": "Set this to True if you want ! to be a command prefix along with /",
"value": "True"
},
"APP_ID": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"APP_HASH": {
"description": "Get this value from my.telegram.org! Please do not steal",
"value": "",
"required": true
},
"BAN_STICKER": {
"description": "ID of the sticker you want to use when banning people.",
"required": false,
"value": ""
},
"MESSAGE_DUMP": {
"description": "optional: a chat where your replied saved messages are stored, to stop people deleting their old",
"required": false,
"value": ""
},
"DEL_CMDS": {
"description": "Set this to True if you want to delete command messages from users who don't have the perms to run that command.",
"value": "False"
},
"GBAN_LOGS": {
"description": "Gban log channel, include the hyphen too: ex: -123456",
"required": false,
"value": ""
},
"ENV": {
"description": "Setting this to ANYTHING will enable environment variables.",
"value": "ANYTHING"
},
"KICK_STICKER": {
"description": "ID of the sticker you want to use when kicking people.",
"required": false,
"value": ""
},
"SQLALCHEMY_DATABASE_URI": {
"description": "Your postgres sql db, empty this field if you dont have one.",
"required": false,
"value": "sqldbtype://username:pw@hostname:port/db_name"
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"value": "1118936839"
},
"OWNER_NAME": {
"description": "Your Name",
"value": "✰Sᴀͥʀᴀͣᴛͫʜ™️✰"
},
"DEV_USERS": {
"description": "ID of users who are Dev (can use /py etc.)",
"required": false,
"value": "1118936839"
},
"CASH_API_KEY": {
"description": "Required for currency converter",
"required": false,
"value": "-xyz"
},
"TIME_API_KEY": {
"description": "Required for timezone information",
"value": "-xyz"
},
"LASTFM_API_KEY": {
"description": "Required for lastfm plugin",
"value": "-xyz"
},
"START_IMG": {
"description": "Image shows when hit /start",
"value": "https://telegra.ph/file/511ad504656e712b88235.jpg"
},
"API_OPENWEATHER": {
"description": "Required for weather information",
"value": "-xyz"
},
"PORT": {
"description": "Port to use for your webhooks.",
"required": false,
"value": ""
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned.",
"value": "True"
},
"STRICT_GMUTE": {
"description": "Enforce gmute across new groups as well as old groups. When a gmutes user talks, he will be muted",
"value": "True"
},
"SUDO_USERS": {
"description": "A space separated list of user IDs who you want to assign as sudo users.",
"required": false,
"value": "1118936839"
},
"SUPPORT_USERS": {
"description": "A space separated list of user IDs who you wanna assign as support users(gban perms only).",
"required": false,
"value": "1118936839"
},
"TOKEN": {
"description": "Your bot token.",
"required": true,
"value": ""
},
"URL": {
"description": "The Heroku App URL :- https://<appname>.herokuapp.com/",
"required": false,
"value": ""
},
"WEBHOOK": {
"description": "Setting this to ANYTHING will enable webhooks.",
"required": false,
"value": ""
},
"WHITELIST_USERS": {
"description": "A space separated list of user IDs who you want to assign as whitelisted - can't be banned with your bot.",
"required": false,
"value": "1118936839"
},
"WALL_API":{
"description": "Enter wall api",
"required": false,
"value": ""
},
"LYDIA_API": {
"description": "Put here lydia API.",
"required": false,
"value": " "
}
},
"keywords": [
"telegram",
"weeb",
"group",
"manager",
"cinderella"
],
"buildpacks": [
{
"url": "https://github.com/heroku/heroku-buildpack-python"
},
{
"url": "https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest"
}
],
"name": "Cinderella",
"repository": "https://github.com/Sur-vivor/CiderellaProBot",
"success_url": "https://telegram.dog/CinderellaProBot",
"logo": "https://telegra.ph/file/511ad504656e712b88235.jpg"
}