forked from AVMG20/smart-support-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
32 lines (28 loc) · 822 Bytes
/
config.example.js
File metadata and controls
32 lines (28 loc) · 822 Bytes
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
module.exports = {
token: 'YOUR_BOT_TOKEN',
// check discord.js docs on valid bot properties
// https://discordjs.guide/popular-topics/faq.html#how-do-i-check-if-a-guild-member-has-a-specific-role
bot: {
activity: 'PLAYING',
activity_message: 'Smart Support',
activity_status: 'online',
},
//the channels the bot is allowed to use
support_channels: [ //channel ids
'896300470971285521'
],
//configured allowed urls
urls: {
allowed_urls: [
'https://pastebin.com',
'https://termbin.com'
],
max_content_size_in_bytes: 314572, //0.3mb
},
//configure image parsing
images: {
max_size_in_bytes: 314572, //0.3mb
parse_language: 'eng',
message_reaction: '👀'
},
}