blob: cfd426323cdb66a4e53601016b1b5e1685909b25 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import Config
config :nostrum,
token: "NTM4MjA0NTYyMTU1MjQxNDgz.GHroNu.1j6C5W5ZrBDBsNcWyPJLAOtpCe0tJr3rPcj0iY",
gateway_intents: [
:guild_messages,
:guild_message_reactions,
:message_content
]
config :logger,
compile_time_purge_matching: [
[application: :nostrum, level_lower_than: :warning]
]
config :logger, :console,
format: "[$level] $message ($metadata)\n",
metadata: [:module]
config :thulani, Thulani.Repo,
database: "memes",
username: "thulani",
hostname: "localhost"
|