legendary-doc-site/config/config.exs

24 lines
590 B
Elixir
Raw Normal View History

2020-07-02 21:08:53 +00:00
use Mix.Config
config :core, router_forwards: [Content.Router]
config :content,
generators: [context_app: false]
2020-07-05 18:56:21 +00:00
config :content, Content.Endpoint,
server: false
2020-07-04 02:41:01 +00:00
import_config "../apps/*/config/config.exs"
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# Use Jason for JSON parsing in Phoenix
config :phoenix, :json_library, Jason
# Import environment specific config. This must remain at the bottom
# of this file so it overrides the configuration defined above.
import_config "#{Mix.env()}.exs"