2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08: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-26 12:16:56 +08:00
|
|
|
config.eager_load = true
|
|
|
|
|
2013-02-06 03:16:51 +08: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-28 00:32:23 +08:00
|
|
|
config.public_file_server.enabled = GlobalSetting.serve_static_assets || false
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2019-05-14 17:28:18 +08:00
|
|
|
config.assets.js_compressor = :uglifier
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# stuff should be pre-compiled
|
|
|
|
config.assets.compile = false
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# Generate digests for assets URLs
|
|
|
|
config.assets.digest = true
|
|
|
|
|
2014-11-17 13:58:14 +08:00
|
|
|
config.log_level = :info
|
|
|
|
|
2024-03-28 10:18:19 +08:00
|
|
|
if (smtp_settings = GlobalSetting.smtp_settings).present?
|
|
|
|
config.action_mailer.smtp_settings = smtp_settings
|
2013-10-08 22:48:57 +08:00
|
|
|
else
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
|
|
config.action_mailer.sendmail_settings = { arguments: "-i" }
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners
|
|
|
|
config.active_support.deprecation = :notify
|
|
|
|
|
2014-07-17 06:34:30 +08:00
|
|
|
# allows developers to use mini profiler
|
|
|
|
config.load_mini_profiler = GlobalSetting.load_mini_profiler
|
2013-04-22 17:16:58 +08:00
|
|
|
|
2013-04-11 18:49:47 +08: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-20 12:12:23 +08:00
|
|
|
config.action_controller.asset_host = GlobalSetting.cdn_url
|
2013-04-11 18:49:47 +08:00
|
|
|
|
2013-09-05 08:27:34 +08: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-20 12:12:23 +08:00
|
|
|
if emails = GlobalSetting.developer_emails
|
2016-05-27 10:18:54 +08:00
|
|
|
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
|
2013-11-02 07:25:43 +08:00
|
|
|
end
|
2013-09-05 08:27:34 +08:00
|
|
|
|
2021-04-21 23:26:20 +08:00
|
|
|
config.active_record.dump_schema_after_migration = false
|
2023-03-01 07:06:14 +08:00
|
|
|
|
|
|
|
if ENV["RAILS_LOG_TO_STDOUT"].present?
|
|
|
|
config.logger = ActiveSupport::TaggedLogging.new(Logger.new(STDOUT))
|
|
|
|
end
|
2023-05-25 09:10:32 +08:00
|
|
|
|
|
|
|
config.active_record.action_on_strict_loading_violation = :log
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|