37 lines
1.1 KiB
Elixir
37 lines
1.1 KiB
Elixir
# 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.
|
|
|
|
# General application configuration
|
|
use Mix.Config
|
|
|
|
config :app,
|
|
ecto_repos: [App.Repo]
|
|
|
|
# Configures the endpoint
|
|
config :app, AppWeb.Endpoint,
|
|
url: [host: "localhost"],
|
|
secret_key_base: "tdFAenzqlutUbXOzX6UG6a1X4NjdLkVnlwE2Z4Lpa6l8+v1rFJmt+Dv+TikTAiog",
|
|
render_errors: [view: AppWeb.ErrorView, accepts: ~w(html json)],
|
|
pubsub: [name: App.PubSub, adapter: Phoenix.PubSub.PG2],
|
|
live_view: [signing_salt: "0Wt6gBeh"]
|
|
|
|
# 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"
|
|
|
|
if File.exists?("#{__DIR__}/#{Mix.env()}.secrets.exs") do
|
|
import_config "#{Mix.env()}.secrets.exs"
|
|
end
|
|
|