mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 00:01:14 +00:00
15 lines
324 B
Elixir
15 lines
324 B
Elixir
import Config
|
|
|
|
# Production configuration
|
|
config :realtime, RealtimeWeb.Endpoint,
|
|
cache_static_manifest: false,
|
|
server: true
|
|
|
|
# Production logger - structured format
|
|
config :logger, :console,
|
|
format: "$time $metadata[$level] $message\n",
|
|
metadata: [:request_id, :user_id, :remote_ip]
|
|
|
|
config :logger,
|
|
level: :info
|