This repository has been archived on 2024-06-16. You can view files and clone it, but cannot push or open issues or pull requests.
mebe/apps/mebe_web/config/config.exs.dist
2015-05-14 23:58:25 +03:00

28 lines
808 B
Text

# 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 endpoint
config :mebe_web, MebeWeb.Endpoint,
url: [host: "localhost"],
root: Path.expand("..", __DIR__),
secret_key_base: "CONFIGURE",
debug_errors: false
config :blog_config,
blog_name: "CONFIGURE",
blog_author: "CONFIGURE",
posts_per_page: 10
# 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"