philomena/config/config.exs

85 lines
2.9 KiB
Elixir
Raw Normal View History

2019-08-14 20:32:32 -04:00
# This file is responsible for configuring your application
2019-12-04 10:35:16 -05:00
# and its dependencies with the aid of the Config module.
2019-08-14 20:32:32 -04:00
#
# This configuration file is loaded before any dependency and
# is restricted to this project.
# General application configuration
2019-12-04 10:35:16 -05:00
import Config
2019-08-14 20:32:32 -04:00
config :philomena,
2019-08-18 12:17:05 -04:00
ecto_repos: [Philomena.Repo],
2019-08-18 21:43:06 -04:00
elasticsearch_url: "http://localhost:9200",
redis_host: "localhost",
2019-08-18 12:17:05 -04:00
password_pepper: "dn2e0EpZrvBLoxUM3gfQveBhjf0bG/6/bYhrOyq3L3hV9hdo/bimJ+irbDWsuXLP",
2019-10-31 22:45:34 -04:00
otp_secret_key: "Wn7O/8DD+qxL0X4X7bvT90wOkVGcA90bIHww4twR03Ci//zq7PnMw8ypqyyT/b/C",
2019-11-28 12:12:10 -05:00
tumblr_api_key: "fuiKNFp9vQFvjLNvx4sUwti4Yb5yGutBN4Xh10LXZhhRKjWlV4",
2019-11-11 12:25:51 -05:00
image_url_root: "/img",
2019-11-11 20:27:09 -05:00
avatar_url_root: "/avatars",
2019-11-29 01:26:05 -05:00
advert_url_root: "/spns",
2019-11-25 23:51:17 -05:00
badge_url_root: "/media",
2019-11-29 14:59:55 -05:00
tag_url_root: "/media",
2019-11-30 01:30:45 -05:00
channel_url_root: "/media",
2019-11-28 12:12:10 -05:00
image_file_root: "priv/static/system/images",
2019-12-07 10:16:59 -05: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 12:12:10 -05:00
cdn_host: "",
2019-11-29 12:03:39 -05:00
proxy_host: nil,
quick_tags_json: File.read!("config/quick_tag_table.json"),
2019-11-29 17:45:44 -05:00
aggregation_json: File.read!("config/aggregation.json"),
2019-11-29 12:03:39 -05:00
footer_json: File.read!("config/footer.json")
2019-08-15 20:28:12 -04:00
2019-08-17 14:58:36 -04:00
config :philomena, :pow,
user: Philomena.Users.User,
2019-08-17 18:06:11 -04:00
repo: Philomena.Repo,
2019-10-31 13:57:39 -04:00
web_module: PhilomenaWeb,
2019-11-15 10:15:21 -05:00
users_context: Philomena.Users,
2019-11-15 11:14:23 -05:00
extensions: [PowResetPassword, PowLockout, PowCaptcha, PowPersistentSession],
2019-11-14 21:40:35 -05:00
controller_callbacks: Pow.Extension.Phoenix.ControllerCallbacks,
2019-11-15 11:14:23 -05:00
mailer_backend: PhilomenaWeb.PowMailer,
2019-11-16 21:27:42 -05:00
captcha_verifier: Philomena.Captcha,
cache_store_backend: Pow.Store.Backend.MnesiaCache
2019-08-17 14:58:36 -04:00
2019-08-15 20:28:12 -04:00
config :bcrypt_elixir,
log_rounds: 12
2019-08-18 21:43:06 -04:00
config :elastix,
json_codec: Jason
2019-10-03 19:58:54 -04:00
config :canary,
2019-12-01 21:30:58 -05:00
repo: Philomena.Repo,
unauthorized_handler: {PhilomenaWeb.NotAuthorizedPlug, :call},
not_found_handler: {PhilomenaWeb.NotFoundPlug, :call}
2019-10-03 19:58:54 -04:00
2019-08-14 20:32:32 -04: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-28 18:50:36 -04:00
config :philomena, :generators, migration: false
2019-08-28 12:57:06 -04:00
2019-08-15 20:28:12 -04:00
config :phoenix, :template_engines,
slim: PhoenixSlime.Engine,
slime: PhoenixSlime.Engine,
# If you want to use LiveView
slimleex: PhoenixSlime.LiveViewEngine
2019-08-14 20:32:32 -04: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
2019-11-14 21:40:35 -05:00
config :bamboo, :json_library, Jason
2019-08-14 20:32:32 -04: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"