# 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 :triglav,
ecto_repos: [Triglav.Repo]
config :triglav, Triglav.Repo, types: Triglav.PostgrexTypes
# Configures the endpoint
config :triglav, TriglavWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "A5QnAf3W8g10k8c4RDgt2SxTOJxtx0zEAjl/8g8zaX8/9wWf4dhQw5Xqpoyp5IXC",
render_errors: [view: TriglavWeb.ErrorView, accepts: ~w(html json), layout: false],
pubsub_server: Triglav.PubSub,
live_view: [signing_salt: "PUQDt1tz"]
# 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"
# Import developer specific local configuration per environment.
local_config = "#{Mix.env()}.local.exs"
local_path = Path.join(__DIR__, local_config)
if File.exists?(local_path) do
import_config local_config
end