mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 15:32:26 +08:00
44 lines
1.6 KiB
Ruby
44 lines
1.6 KiB
Ruby
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
|
|
|
|
# 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)
|
|
config.serve_static_assets = false
|
|
|
|
# Compress JavaScripts and CSS
|
|
config.assets.compress = true
|
|
|
|
# stuff should be pre-compiled
|
|
config.assets.compile = false
|
|
|
|
# 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
|
|
|
|
config.action_mailer.delivery_method = :sendmail
|
|
config.action_mailer.sendmail_settings = {arguments: '-i'}
|
|
|
|
# Send deprecation notices to registered listeners
|
|
config.active_support.deprecation = :notify
|
|
|
|
# I dunno ... perhaps the built-in minifier is using closure
|
|
# regardless it is blowing up
|
|
config.ember.variant = :development
|
|
config.ember.ember_location = "#{Rails.root}/app/assets/javascripts/external_production/ember.js"
|
|
config.ember.handlebars_location = "#{Rails.root}/app/assets/javascripts/external/handlebars-1.0.rc.2.js"
|
|
config.handlebars.precompile = true
|
|
|
|
end
|