-
Notifications
You must be signed in to change notification settings - Fork 234
/
Copy pathapp.json
117 lines (117 loc) · 3.76 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
{
"name": "yAE-mIKO",
"description": "A versatile Telegram Group Management Bot.",
"logo": "https://telegra.ph/file/4d370b478d90d98709398.jpg",
"keywords": ["telegram", "modular", "group", "management", "Miko"],
"repository": "https://github.com/Infamous-Hydra/YaeMiko",
"stack": "heroku-24",
"formation": {
"worker": {
"quantity": 1,
"size": "eco"
}
},
"addons": [
{
"plan": "heroku-postgresql",
"options": {
"version": "16"
}
}
],
"env": {
"API_ID": {
"description": "Obtain this value from my.telegram.org/apps.",
"required": true,
"value": "204"
},
"API_HASH": {
"description": "Obtain this value from my.telegram.org/apps.",
"required": true,
"value": "2df"
},
"DEL_CMDS": {
"description": "Set this to True to delete command messages from users without the necessary permissions.",
"value": "True"
},
"ENV": {
"description": "Setting this to ANYTHING will enable environment variables. Leave it as it is.",
"required": true,
"value": "True"
},
"EVENT_LOGS": {
"description": "Channel for event logs to note down important bot-level events. Recommend making this public. Example: '-123456'",
"required": true,
"value": "-100"
},
"MESSAGE_DUMP": {
"description": "Support chat ID.",
"required": true,
"value": "-100"
},
"MONGO_DB_URI": {
"description": "Required for MongoDB database connections.",
"required": true,
"value": "mongodb+srv://"
},
"DATABASE_URL": {
"description": "Required for SQL database connections.",
"required": true,
"value": "postgres://"
},
"OWNER_ID": {
"description": "Your user ID as an integer.",
"required": true,
"value": "5907205317"
},
"DEV_USERS": {
"description": "A space separated list of user IDs who you want to assign as sudo users.",
"required": false,
"value": "5907205317"
},
"DRAGONS": {
"description": "A space separated list of user IDs who you want to assign as sudo users.",
"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"
},
"DEMONS": {
"description": "A space separated list of user IDs who can use Gban From Your Bot",
"required": false,
"value": "5555455171 5739199900"
},
"TIGERS": {
"description": "A space separated list of user IDs who can not be banned by your Bot",
"required": false,
"value": "5907205317"
},
"WOLVES": {
"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": "5907205317"
},
"SUPPORT_CHAT": {
"description": "Your Telegram support group chat username. Users will reach out for assistance. Example: MyGroupChatUsernameBlah. Avoid pointing to Miko Support to prevent conflicts.",
"required": true,
"value": ""
},
"SUPPORT_ID": {
"description": "Support chat ID.",
"required": true,
"value": "-100"
},
"DB_NAME": {
"description": "Your MongoDB name.",
"required": true,
"value": "MikoDB"
},
"TOKEN": {
"description": "Bot token obtained from @BotFather on Telegram.",
"required": true,
"value": ""
}
}
}