mirror of
https://github.com/philomena-dev/philomena.git
synced 2024-11-23 20:18:00 +01:00
81 lines
3 KiB
Elixir
81 lines
3 KiB
Elixir
|
import Config
|
||
|
|
||
|
# ## Using releases (Elixir v1.9+)
|
||
|
#
|
||
|
# If you are doing OTP releases, you can assemble a release
|
||
|
# by calling `mix release`.
|
||
|
#
|
||
|
# See `mix help release` for more information.
|
||
|
|
||
|
config :bcrypt_elixir,
|
||
|
log_rounds: String.to_integer(System.get_env("BCRYPT_ROUNDS", "12"))
|
||
|
|
||
|
config :philomena,
|
||
|
anonymous_name_salt: System.fetch_env!("ANONYMOUS_NAME_SALT"),
|
||
|
hcaptcha_secret_key: System.fetch_env!("HCAPTCHA_SECRET_KEY"),
|
||
|
hcaptcha_site_key: System.fetch_env!("HCAPTCHA_SITE_KEY"),
|
||
|
elasticsearch_url: System.get_env("ELASTICSEARCH_URL", "http://localhost:9200"),
|
||
|
advert_file_root: System.fetch_env!("ADVERT_FILE_ROOT"),
|
||
|
avatar_file_root: System.fetch_env!("AVATAR_FILE_ROOT"),
|
||
|
channel_url_root: System.fetch_env!("CHANNEL_URL_ROOT"),
|
||
|
badge_file_root: System.fetch_env!("BADGE_FILE_ROOT"),
|
||
|
password_pepper: System.fetch_env!("PASSWORD_PEPPER"),
|
||
|
avatar_url_root: System.fetch_env!("AVATAR_URL_ROOT"),
|
||
|
advert_url_root: System.fetch_env!("ADVERT_URL_ROOT"),
|
||
|
image_file_root: System.fetch_env!("IMAGE_FILE_ROOT"),
|
||
|
tumblr_api_key: System.fetch_env!("TUMBLR_API_KEY"),
|
||
|
otp_secret_key: System.fetch_env!("OTP_SECRET_KEY"),
|
||
|
image_url_root: System.fetch_env!("IMAGE_URL_ROOT"),
|
||
|
badge_url_root: System.fetch_env!("BADGE_URL_ROOT"),
|
||
|
mailer_address: System.fetch_env!("MAILER_ADDRESS"),
|
||
|
tag_file_root: System.fetch_env!("TAG_FILE_ROOT"),
|
||
|
tag_url_root: System.fetch_env!("TAG_URL_ROOT"),
|
||
|
redis_host: System.get_env("REDIS_HOST", "localhost"),
|
||
|
proxy_host: System.get_env("PROXY_HOST"),
|
||
|
camo_host: System.get_env("CAMO_HOST"),
|
||
|
camo_key: System.get_env("CAMO_KEY"),
|
||
|
cdn_host: System.fetch_env!("CDN_HOST"),
|
||
|
app_dir: System.get_env("APP_DIR", File.cwd!())
|
||
|
|
||
|
config :exq,
|
||
|
host: System.get_env("REDIS_HOST", "localhost"),
|
||
|
queues: [{"videos", 2}, {"images", 4}, {"indexing", 16}]
|
||
|
|
||
|
if is_nil(System.get_env("START_WORKER")) do
|
||
|
# Make queueing available but don't process any jobs
|
||
|
config :exq, queues: []
|
||
|
end
|
||
|
|
||
|
if config_env() != :test do
|
||
|
# Database config
|
||
|
config :philomena, Philomena.Repo,
|
||
|
url: System.fetch_env!("DATABASE_URL"),
|
||
|
pool_size: String.to_integer(System.get_env("POOL_SIZE", "16"))
|
||
|
end
|
||
|
|
||
|
if config_env() == :prod do
|
||
|
# Production mailer config
|
||
|
config :philomena, Philomena.Mailer,
|
||
|
adapter: Bamboo.SMTPAdapter,
|
||
|
server: System.fetch_env!("SMTP_RELAY"),
|
||
|
hostname: System.fetch_env!("SMTP_DOMAIN"),
|
||
|
port: System.get_env("SMTP_PORT") || 587,
|
||
|
username: System.fetch_env!("SMTP_USERNAME"),
|
||
|
password: System.fetch_env!("SMTP_PASSWORD"),
|
||
|
tls: :always,
|
||
|
auth: :always
|
||
|
|
||
|
# Production endpoint config
|
||
|
config :philomena, PhilomenaWeb.Endpoint,
|
||
|
http: [ip: {127, 0, 0, 1}, port: {:system, "PORT"}],
|
||
|
url: [host: System.fetch_env!("APP_HOSTNAME"), scheme: "https", port: 443],
|
||
|
secret_key_base: System.fetch_env!("SECRET_KEY_BASE"),
|
||
|
server: not is_nil(System.get_env("START_ENDPOINT"))
|
||
|
else
|
||
|
# Don't send email in development
|
||
|
config :philomena, Philomena.Mailer, adapter: Bamboo.LocalAdapter
|
||
|
|
||
|
# Use this to debug slime templates
|
||
|
# config :slime, :keep_lines, true
|
||
|
end
|