summaryrefslogtreecommitdiff
path: root/config/prod.exs
blob: e5d92db8f33e59d4957d0a9eb40a92a3456c2e23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
use Mix.Config

config :lsg, LSGWeb.Endpoint,
  http: [ip: {0,0,0,0}, port: 4000]

config :logger_json, :backend,
  metadata: :all

config :logger,
  backends: [LoggerJSON]

import_config "secret.exs"
import_config "prod.secret.exs"