Current section

Files

Jump to
phoenix priv template config config.exs
Raw

priv/template/config/config.exs

# This file is responsible for configuring your application
# and its dependencies with the aid of the Mix.Config module.
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
use Mix.Config
# Configures the router
config :phoenix, <%= application_module %>.Router,
url: [host: "localhost"],
http: [port: System.get_env("PORT")],
https: false,
secret_key_base: "<%= secret_key_base %>",
catch_errors: true,
debug_errors: false,
error_controller: <%= application_module %>.PageController
# Session configuration
config :phoenix, <%= application_module %>.Router,
session: [store: :cookie,
key: "_<%= application_name %>_key"]
# Configures Elixir's Logger
config :logger, :console,
format: "$time $metadata[$level] $message\n",
metadata: [:request_id]
# 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"