2013-03-10 20:21:56 -04: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-09-03 19:39:16 -04:00
|
|
|
config.log_level = :info
|
|
|
|
|
2013-03-10 20:21:56 -04:00
|
|
|
# Full error reports are disabled and caching is turned on
|
|
|
|
config.consider_all_requests_local = false
|
|
|
|
config.action_controller.perform_caching = true
|
|
|
|
|
|
|
|
# in profile mode we serve static assets
|
|
|
|
config.serve_static_assets = true
|
|
|
|
|
|
|
|
# Compress JavaScripts and CSS
|
|
|
|
config.assets.compress = true
|
|
|
|
|
|
|
|
# stuff should be pre-compiled, allow compilation to make life easier
|
2013-09-10 02:02:16 -04:00
|
|
|
config.assets.compile = false
|
2013-03-10 20:21:56 -04:00
|
|
|
|
|
|
|
# Generate digests for assets URLs
|
|
|
|
config.assets.digest = true
|
|
|
|
|
|
|
|
# Specifies the header that your server uses for sending files
|
|
|
|
config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
|
|
|
|
|
|
|
|
# Enable locale fallbacks for I18n (makes lookups for any locale fall back to
|
|
|
|
# the I18n.default_locale when a translation can not be found)
|
|
|
|
config.i18n.fallbacks = true
|
|
|
|
|
2013-08-18 21:33:38 -04:00
|
|
|
# we recommend you use mailcatcher https://github.com/sj26/mailcatcher
|
|
|
|
config.action_mailer.smtp_settings = { address: "localhost", port: 1025 }
|
2013-03-10 20:21:56 -04:00
|
|
|
|
|
|
|
# Send deprecation notices to registered listeners
|
|
|
|
config.active_support.deprecation = :notify
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# precompile handlebar assets
|
2013-03-10 20:21:56 -04:00
|
|
|
config.handlebars.precompile = true
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# this setting enable rack_cache so it caches various requests in redis
|
2013-08-29 07:23:00 -04:00
|
|
|
config.enable_rack_cache = false
|
2013-04-11 02:24:08 -04:00
|
|
|
|
|
|
|
# allows users to use mini profiler
|
|
|
|
config.enable_mini_profiler = false
|
2013-03-10 20:21:56 -04:00
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# for profiling with perftools
|
|
|
|
# config.middleware.use ::Rack::PerftoolsProfiler, default_printer: 'gif'
|
2013-03-10 20:21:56 -04:00
|
|
|
end
|