mirror of
https://github.com/warmbly/warmbly.git
synced 2026-09-13 00:03:42 +00:00
16 lines
314 B
Elixir
16 lines
314 B
Elixir
import Config
|
|
|
|
# Development-specific configuration
|
|
config :realtime, RealtimeWeb.Endpoint,
|
|
debug_errors: true,
|
|
code_reloader: false,
|
|
check_origin: false,
|
|
watchers: []
|
|
|
|
# Development logger
|
|
config :logger, :console, format: "[$level] $message\n"
|
|
|
|
# Disable Sentry in development
|
|
config :sentry,
|
|
dsn: nil
|