-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathconfig.toml
More file actions
59 lines (44 loc) · 1.34 KB
/
config.toml
File metadata and controls
59 lines (44 loc) · 1.34 KB
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
[bot]
# The bot's API token. Keep this secret!
token = "your-bot-token-here"
# List of owners by user ID
owners = ["98633956773093376", "130012001236811776"]
# Default bot command prefix
prefix = "!"
# The tracebacks of any unexpected errors are uploaded to this file.
# Set to "0" to disable
error-channel-id = "488543452305555456"
# Settings for optional cogs
[cogs.example]
enabled = true
[cogs.statbot]
enabled = false
url = "postgres://statbot:passwordhere@localhost/statbot_ro"
[cogs.simplewriter]
enabled = false
# The ID of the text channel to enforce the simplewriter vocabulary in
# Set to "0" to implicitly disable simplewriter
channel-id = "0"
[moderation]
# Maximum number of messages that may be specified
# when doing a bulk message cleanup
max-cleanup-messages = "500"
# Cooldown after pinging a role in a channel, in seconds
ping-cooldown = "3600"
[delay]
# Configuration for the delayed event queue
# How many events are grouped in one "chunk"
chunk-size = "10"
# How many seconds of waiting should happen after each chunk
sleep = "0.1"
# Emojis to display for certain icons within the bot
# Set to "0" to disable
[emojis]
anger = "496085813881470986"
python = "490419105699069952"
discordpy = "490419059964510210"
# Path to the RDBMS futaba will use
[database]
url = "postgres://futaba:passwordhere@localhost"
[jwt]
secret = "thesecretstring"