2019-08-15 02:32:32 +02:00
|
|
|
# This file is responsible for configuring your application
|
2019-12-04 16:35:16 +01:00
|
|
|
# and its dependencies with the aid of the Config module.
|
2019-08-15 02:32:32 +02:00
|
|
|
#
|
|
|
|
# This configuration file is loaded before any dependency and
|
|
|
|
# is restricted to this project.
|
|
|
|
|
|
|
|
# General application configuration
|
2019-12-04 16:35:16 +01:00
|
|
|
import Config
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
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-12-09 00:34:18 +01:00
|
|
|
redis_host: "localhost",
|
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-28 18:12:10 +01:00
|
|
|
tumblr_api_key: "fuiKNFp9vQFvjLNvx4sUwti4Yb5yGutBN4Xh10LXZhhRKjWlV4",
|
2019-11-11 18:25:51 +01:00
|
|
|
image_url_root: "/img",
|
2019-11-12 02:27:09 +01:00
|
|
|
avatar_url_root: "/avatars",
|
2019-11-29 07:26:05 +01:00
|
|
|
advert_url_root: "/spns",
|
2019-11-26 05:51:17 +01:00
|
|
|
badge_url_root: "/media",
|
2019-11-29 20:59:55 +01:00
|
|
|
tag_url_root: "/media",
|
2019-11-30 07:30:45 +01:00
|
|
|
channel_url_root: "/media",
|
2019-11-28 18:12:10 +01:00
|
|
|
image_file_root: "priv/static/system/images",
|
2019-12-07 16:16:59 +01:00
|
|
|
advert_file_root: "priv/static/system/images/adverts",
|
|
|
|
avatar_file_root: "priv/static/system/images/avatars",
|
|
|
|
badge_file_root: "priv/static/system/images",
|
|
|
|
channel_image_file_root: "priv/static/system/images",
|
|
|
|
channel_banner_file_root: "priv/static/system/images",
|
|
|
|
tag_file_root: "priv/static/system/images",
|
2019-11-28 18:12:10 +01:00
|
|
|
cdn_host: "",
|
2019-12-25 19:47:00 +01:00
|
|
|
proxy_host: nil,
|
|
|
|
app_dir: File.cwd!()
|
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-15 16:15:21 +01:00
|
|
|
users_context: Philomena.Users,
|
2019-11-15 17:14:23 +01:00
|
|
|
extensions: [PowResetPassword, PowLockout, PowCaptcha, PowPersistentSession],
|
2019-11-15 03:40:35 +01:00
|
|
|
controller_callbacks: Pow.Extension.Phoenix.ControllerCallbacks,
|
2019-11-15 17:14:23 +01:00
|
|
|
mailer_backend: PhilomenaWeb.PowMailer,
|
2019-11-17 03:27:42 +01:00
|
|
|
captcha_verifier: Philomena.Captcha,
|
|
|
|
cache_store_backend: Pow.Store.Backend.MnesiaCache
|
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,
|
2019-12-02 03:30:58 +01:00
|
|
|
repo: Philomena.Repo,
|
|
|
|
unauthorized_handler: {PhilomenaWeb.NotAuthorizedPlug, :call},
|
|
|
|
not_found_handler: {PhilomenaWeb.NotFoundPlug, :call}
|
2019-10-04 01:58:54 +02:00
|
|
|
|
2019-08-15 02:32:32 +02:00
|
|
|
# Configures the endpoint
|
|
|
|
config :philomena, PhilomenaWeb.Endpoint,
|
|
|
|
url: [host: "localhost"],
|
|
|
|
secret_key_base: "xZYTon09JNRrj8snd7KL31wya4x71jmo5aaSSRmw1dGjWLRmEwWMTccwxgsGFGjM",
|
2020-04-27 23:35:44 +02:00
|
|
|
render_errors: [view: PhilomenaWeb.ErrorView, accepts: ~w(html json)]
|
2019-08-15 02:32:32 +02:00
|
|
|
|
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",
|
2019-12-20 18:13:03 +01:00
|
|
|
metadata: [:request_id],
|
|
|
|
truncate: :infinity
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
# Use Jason for JSON parsing in Phoenix
|
|
|
|
config :phoenix, :json_library, Jason
|
2019-11-15 03:40:35 +01:00
|
|
|
config :bamboo, :json_library, Jason
|
2019-08-15 02:32:32 +02:00
|
|
|
|
|
|
|
# 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"
|