philomena/config/config.exs

60 lines
1.8 KiB
Elixir
Raw Normal View History

2019-08-15 02:32:32 +02:00
# 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 :philomena,
2019-08-18 18:17:05 +02:00
ecto_repos: [Philomena.Repo],
2019-08-19 03:43:06 +02:00
elasticsearch_url: "http://localhost:9200",
2019-08-18 18:17:05 +02:00
password_pepper: "dn2e0EpZrvBLoxUM3gfQveBhjf0bG/6/bYhrOyq3L3hV9hdo/bimJ+irbDWsuXLP",
2019-11-01 03:45:34 +01:00
otp_secret_key: "Wn7O/8DD+qxL0X4X7bvT90wOkVGcA90bIHww4twR03Ci//zq7PnMw8ypqyyT/b/C",
2019-11-11 18:25:51 +01:00
image_url_root: "/img",
avatar_url_root: "/avatars"
2019-08-16 02:28:12 +02:00
2019-08-17 20:58:36 +02:00
config :philomena, :pow,
user: Philomena.Users.User,
2019-08-18 00:06:11 +02:00
repo: Philomena.Repo,
2019-10-31 18:57:39 +01:00
web_module: PhilomenaWeb,
2019-11-02 14:14:03 +01:00
extensions: [PowResetPassword, PowPersistentSession],
2019-08-18 00:06:11 +02:00
controller_callbacks: Pow.Extension.Phoenix.ControllerCallbacks
2019-08-17 20:58:36 +02:00
2019-08-16 02:28:12 +02:00
config :bcrypt_elixir,
log_rounds: 12
2019-08-19 03:43:06 +02:00
config :elastix,
json_codec: Jason
2019-10-04 01:58:54 +02:00
config :canary,
repo: Philomena.Repo
2019-08-15 02:32:32 +02:00
# Configures the endpoint
config :philomena, PhilomenaWeb.Endpoint,
url: [host: "localhost"],
secret_key_base: "xZYTon09JNRrj8snd7KL31wya4x71jmo5aaSSRmw1dGjWLRmEwWMTccwxgsGFGjM",
render_errors: [view: PhilomenaWeb.ErrorView, accepts: ~w(html json)],
pubsub: [name: Philomena.PubSub, adapter: Phoenix.PubSub.PG2]
2019-08-29 00:50:36 +02:00
config :philomena, :generators, migration: false
2019-08-28 18:57:06 +02:00
2019-08-16 02:28:12 +02:00
config :phoenix, :template_engines,
slim: PhoenixSlime.Engine,
slime: PhoenixSlime.Engine,
# If you want to use LiveView
slimleex: PhoenixSlime.LiveViewEngine
2019-08-15 02:32:32 +02: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"