2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
Discourse::Application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
|
|
|
# Code is not reloaded between requests
|
|
|
|
config.cache_classes = true
|
2013-11-25 22:16:56 -06:00
|
|
|
config.eager_load = true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Full error reports are disabled and caching is turned on
|
|
|
|
config.consider_all_requests_local = false
|
|
|
|
config.action_controller.perform_caching = true
|
|
|
|
|
|
|
|
# Disable Rails's static asset server (Apache or nginx will already do this)
|
2017-10-27 11:32:23 -05:00
|
|
|
config.public_file_server.enabled = GlobalSetting.serve_static_assets || false
|
2013-02-05 13:16:51 -06:00
|
|
|
|
2019-05-14 04:28:18 -05:00
|
|
|
config.assets.js_compressor = :uglifier
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# stuff should be pre-compiled
|
|
|
|
config.assets.compile = false
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
# Generate digests for assets URLs
|
|
|
|
config.assets.digest = true
|
|
|
|
|
2014-11-16 23:58:14 -06:00
|
|
|
config.log_level = :info
|
|
|
|
|
2024-03-27 21:18:19 -05:00
|
|
|
if (smtp_settings = GlobalSetting.smtp_settings).present?
|
|
|
|
config.action_mailer.smtp_settings = smtp_settings
|
2013-10-08 09:48:57 -05:00
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
|
|
config.action_mailer.sendmail_settings = { arguments: "-i" }
|
|
|
|
end
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners
|
|
|
|
config.active_support.deprecation = :notify
|
|
|
|
|
2014-07-16 17:34:30 -05:00
|
|
|
# allows developers to use mini profiler
|
|
|
|
config.load_mini_profiler = GlobalSetting.load_mini_profiler
|
2013-04-22 04:16:58 -05:00
|
|
|
|
2013-04-11 05:49:47 -05:00
|
|
|
# Discourse strongly recommend you use a CDN.
|
|
|
|
# For origin pull cdns all you need to do is register an account and configure
|
2013-12-19 22:12:23 -06:00
|
|
|
config.action_controller.asset_host = GlobalSetting.cdn_url
|
2013-04-11 05:49:47 -05:00
|
|
|
|
2013-09-04 19:27:34 -05:00
|
|
|
# a comma delimited list of emails your devs have
|
|
|
|
# developers have god like rights and may impersonate anyone in the system
|
|
|
|
# normal admins may only impersonate other moderators (not admins)
|
2013-12-19 22:12:23 -06:00
|
|
|
if emails = GlobalSetting.developer_emails
|
2016-05-26 21:18:54 -05:00
|
|
|
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
|
2013-11-01 18:25:43 -05:00
|
|
|
end
|
2013-09-04 19:27:34 -05:00
|
|
|
|
2021-04-21 10:26:20 -05:00
|
|
|
config.active_record.dump_schema_after_migration = false
|
2023-02-28 17:06:14 -06:00
|
|
|
|
|
|
|
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
|
|
|
config.logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
|
|
|
|
end
|
2023-05-24 20:10:32 -05:00
|
|
|
|
|
|
|
config.active_record.action_on_strict_loading_violation = :log
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|