aboutsummaryrefslogtreecommitdiff
path: root/config/config.exs
diff options
context:
space:
mode:
Diffstat (limited to 'config/config.exs')
-rw-r--r--config/config.exs18
1 files changed, 18 insertions, 0 deletions
diff --git a/config/config.exs b/config/config.exs
new file mode 100644
index 0000000..2cac044
--- /dev/null
+++ b/config/config.exs
@@ -0,0 +1,18 @@
+import Config
+
+config :nostrum,
+ token: "NTM4MjA0NTYyMTU1MjQxNDgz.GHQMG6.WMNuny5iGpCvUKfLuQx_w9k6zkow7AhNNbw-B4",
+ gateway_intents: [
+ :guild_messages,
+ :guild_message_reactions,
+ :message_content
+ ]
+
+config :logger,
+ compile_time_purge_matching: [
+ [application: :nostrum, level_lower_than: :info]
+ ]
+
+config :logger, :console,
+ format: "[$level] $message ($metadata)\n",
+ metadata: [:module]