-
Notifications
You must be signed in to change notification settings - Fork 14
/
app.json
120 lines (118 loc) · 3.53 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
{
"name": "Skylee",
"description": "Telegram's Pro group manager. Modular Telegram group management bot!",
"logo": "https://telegra.ph/file/63350037b2146671a2511.jpg",
"keywords": [
"telegram",
"best",
"group",
"manager",
"3"
],
"repository": "https://github.com/EmiliaDevs/SkyleeBot.git",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables",
"value": "ANYTHING"
},
"TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"TL_APP_ID": {
"description": "Your account API ID. Get it from my.telegram.org",
"value": "",
"required": true
},
"TL_HASH": {
"description": "Your account HASH. Get it from my.telegram.org",
"value": "",
"required": true
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "1083049180",
"required": false
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "GodDrick",
"required": false
},
"WEBHOOK": {
"description": "Setting this to ANYTHING will enable webhooks when in env mode messages",
"value": "ANYTHING"
},
"URL": {
"description": "The Heroku App URL similar to https://<appname>.herokuapp.com/",
"value": "Heroku url"
},
"MESSAGE_DUMP": {
"description": "optional: a chat where your replied saved messages are stored, to stop people deleting their old",
"value": "-no",
"required": false
},
"SUDO_USERS": {
"description": "A space separated list of user_ids which should be considered sudo users",
"value": "1083049180"
},
"SUPPORT_USERS": {
"description": "A space separated list of user_ids which should be considered support users (can gban/ungban, nothing else)",
"value": "1083049180"
},
"WHITELIST_USERS": {
"description": "A space separated list of user_ids which should be considered whitelisted - they can't be banned.",
"value": "1083049180"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations.",
"value": "https://www.paypal.me/Your_id_here",
"required": false
},
"PORT": {
"description": "Port to use for your webhooks",
"value": "5000",
"required": false
},
"DEL_CMDS": {
"description": "Whether to delete commands from users which don't have rights to use that command",
"value": "True",
"required": false
},
"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
},
"ALLOW_EXCL": {
"description": "Whether to allow using exclamation marks ! for commands as well as /.",
"value": "True"
},
"BAN_STICKER": {
"description": "Which sticker to use when banning people. Use https://telegram.dog/ShowJsonBot to get the file_id",
"value": "CAADBAAD6AMAAkJ_EQNu_RjOszbmnxYE",
"required": false
},
"API_KEY": {
"description": "API Key Here",
"value": "-xyz",
"required": false
},
"NO_LOAD": {
"description": "Modules Loader.",
"value": "['translation', 'sed']"
},
"SQLALCHEMY_DATABASE_URI": {
"description": "db.",
"value": "sqldbtype://username:pw@hostname:port/db_name"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.6"
}
}
]
}