-
Notifications
You must be signed in to change notification settings - Fork 2
/
app.json
102 lines (102 loc) · 3.11 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
{
"name": "Kochubot",
"description": "Telegram's sassiest group manager. Modular Telegram group management bot!",
"logo": "https://telegra.ph/file/1925c7a2f601539ccde7a.png",
"keywords": [
"telegram",
"best",
"group",
"manager",
"3",
"plugin",
"modular",
"productivity"
],
"repository": "https://github.com/jithumon/tgbot",
"env": {
"ENV": {
"description": "Setting this to ANYTHING will enable env variables. But, you need to understand the code to know what to set here!",
"value": "ANYTHING"
},
"TOKEN": {
"description": "Your bot token, as a string."
},
"OWNER_ID": {
"description": "An integer of consisting of your owner ID",
"value": "20516707"
},
"OWNER_USERNAME": {
"description": "Your username",
"value": "SonOfLars"
},
"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/"
},
"MESSAGE_DUMP": {
"description": "optional: a chat where your replied saved messages are stored, to stop people deleting their old",
"required": false
},
"SUDO_USERS": {
"description": "A space separated list of user_ids which should be considered sudo users",
"value": "254318997 18673980 83489514"
},
"SUPPORT_USERS": {
"description": "A space separated list of user_ids which should be considered support users (can gban/ungban, nothing else)",
"value": "254318997 18673980 83489514"
},
"WHITELIST_USERS": {
"description": "A space separated list of user_ids which should be considered whitelisted - they can't be banned.",
"value": "254318997 18673980 83489514"
},
"DONATION_LINK": {
"description": "Optional: link where you would like to receive donations.",
"value": "https://www.paypal.me/PaulSonOfLars"
},
"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": "CAADBQADfQADv7rGI0wxx1ORU7UzAg",
"required": false
},
"BMERNU_SCUT_SRELFTI": {
"description": "please set this value as 0",
"value": "1",
"required": false
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "12"
}
}
],
"stack": "heroku-20",
"buildpacks": [],
"formation": {
"web": {
"quantity": 1,
"size": "free"
}
}
}