-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
app.json
91 lines (90 loc) · 2.77 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
{
"name": "Aniebot",
"description": "Telegram's sassiest group manager. Modular Telegram group management bot!",
"keywords": [
"telegram",
"best",
"group",
"manager",
"3"
],
"repository": "https://github.com/Anieteam/AnieRobot",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables",
"value": "ANYTHING"
},
"TOKEN": {
"description": "Your bot token, as a string.",
"value": "Your Bot Token"
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "Your Id"
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "Your Username"
},
"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": "Group Id"
},
"SUDO_USERS": {
"description": "A space separated list of user_ids which should be considered sudo users",
"value": "Use You Own List Of Sudo Users"
},
"SUPPORT_USERS": {
"description": "A space separated list of user_ids which should be considered support users (can gban/ungban, nothing else)",
"value": "Use You Own List Of Supporting Users"
},
"WHITELIST_USERS": {
"description": "A space separated list of user_ids which should be considered whitelisted - they can't be banned.",
"value": "Use You Own List Of Whitelist Users"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations.",
"value": "null"
},
"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"
},
"API_ID": {
"description": "Your account api id",
"value": "put your api id here"
},
"API_HASH": {
"description": "Your api hash",
"value": "put you api hash here"
},
"STRICT_GBAN": {
"description": "Enforce gbans across new groups as well as old groups. When a gbanned user talks, he will be banned.",
"value": "True"
},
"CUSTOM_CMD": {
"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": "13"
}
}
]
}