-
Notifications
You must be signed in to change notification settings - Fork 19
/
app.json
87 lines (86 loc) · 2.69 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
{
"name": "Marie",
"description": "Telegram's sassiest group manager. Modular Telegram group management bot!",
"keywords": [
"telegram",
"best",
"group",
"manager",
"3"
],
"repository": "https://github.com/TheDarkW3b/Marie-English",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables",
"value": "ANYTHING"
},
"TOKEN": {
"description": "Your bot token, as a string.",
"value": ""
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "686021814"
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "TheDarkW3b"
},
"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": ""
},
"MESSAGE_DUMP": {
"description": "optional: a chat where your replied saved messages are stored, to stop people deleting their old",
"value": "-1007777777777"
},
"SUDO_USERS": {
"description": "A space separated list of user_ids which should be considered sudo users",
"value": "686021814 835137609"
},
"SUPPORT_USERS": {
"description": "A space separated list of user_ids which should be considered support users (can gban/ungban, nothing else)",
"value": "835137609 686021814"
},
"WHITELIST_USERS": {
"description": "A space separated list of user_ids which should be considered whitelisted - they can't be banned.",
"value": "686021814 835137609"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations.",
"value": "https://t.me/TheDarkW3b"
},
"PORT": {
"description": "Port to use for your webhooks",
"value": "8443"
},
"DEL_CMDS": {
"description": "Whether to delete commands from users which don't have rights to use that command",
"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"
},
"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": "CAADBQADKwADttzjKMDa_NPYQVImFgQ"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "9.5"
}
}
]
}