-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
example-config.toml
52 lines (38 loc) · 1000 Bytes
/
example-config.toml
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
[tokens]
discord = ""
# Sentry.io logging
sentry = ""
# PostgreSQL Connection
[tokens.postgres]
uri = "postgres://lightning:postgres@postgres/lightning"
# Redis Connection
[tokens.redis]
host = "redis"
port = "6379"
password = ""
db = 1
[tokens.api]
url = "http://api:8000"
key = "supersecretkey"
[tokens.prometheus]
# Uncomment below when you want to use prometheus for metrics
# port = 8000
[logging]
# Any bot errors either command errors or internal errors. Should be a webhook url
bot_errors = ""
# Webhook URL
blacklist_alerts = ""
# Logging for guild additions and removals
guild_alerts = ""
# Logging Level (defaults to INFO if not set)
level = ""
# Console logger handler
console = true
[bot]
spam_count = 5
# Startup game
game = "rewrite is the future!"
# Prometheus plugin is disabled by default, remove it from the list below if you want to enable it
disabled_cogs = ['lightning.cogs.prometheus']
# Support server invite
support_server_invite = "https://discord.gg/SpFjsy3"