+ config.paths["app/models"].skip_eager_load! if Settings.status == "database_offline"
+
+ # Use memcached for caching if required
+ config.cache_store = :mem_cache_store, Settings.memcache_servers, { :namespace => "rails:cache" } if Settings.key?(:memcache_servers)
+
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
+ # the I18n.default_locale when a translation cannot be found).
+ config.i18n.fallbacks = true
+
+ # Use logstash for logging if required
+ if Settings.key?(:logstash_path)
+ config.logstasher.enabled = true
+ config.logstasher.suppress_app_log = false
+ config.logstasher.logger_path = Settings.logstash_path
+ config.logstasher.log_controller_parameters = true
+ end