2019-12-08 02:34:58 +00:00
|
|
|
import Config
|
|
|
|
|
2019-12-26 21:11:43 +00:00
|
|
|
config :shortnr,
|
|
|
|
port: 8080,
|
2020-02-08 04:53:08 +00:00
|
|
|
ets_implementation: :dets
|
2019-12-08 02:34:58 +00:00
|
|
|
|
|
|
|
config :logger, :console,
|
|
|
|
format: "date=$date time=$time level=$level$levelpad message=\"$message\" $metadata\n",
|
2019-12-16 04:20:21 +00:00
|
|
|
metadata: [:port, :file, :line, :crash_reason, :stack],
|
2020-02-08 04:53:08 +00:00
|
|
|
level: :debug
|
2019-12-31 02:50:39 +00:00
|
|
|
|
|
|
|
config :credo,
|
|
|
|
checks: [
|
2020-01-01 23:11:38 +00:00
|
|
|
# Ignore these checks because they don't apply to the projects Elixir version
|
2019-12-31 02:50:39 +00:00
|
|
|
{Credo.Check.Refactor.MapInto, false},
|
|
|
|
{Credo.Check.Warning.LazyLogging, false}
|
|
|
|
]
|
2020-02-08 04:53:08 +00:00
|
|
|
|
2020-04-13 09:11:52 +00:00
|
|
|
import_config "#{Mix.env()}.exs"
|