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