2020-07-02 21:08:53 +00:00
|
|
|
use Mix.Config
|
|
|
|
|
2020-07-05 17:26:26 +00:00
|
|
|
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"
|
2020-07-05 17:26:26 +00:00
|
|
|
|
|
|
|
# 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"
|