2013-02-05 14:16:51 -05:00
|
|
|
require File.expand_path('../boot', __FILE__)
|
|
|
|
require 'rails/all'
|
2013-02-18 01:34:43 -05:00
|
|
|
require 'redis-store' # HACK
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Plugin related stuff
|
2013-05-01 17:10:51 -04:00
|
|
|
require_relative '../lib/discourse_plugin_registry'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
if defined?(Bundler)
|
|
|
|
# If you precompile assets before deploying to production, use this line
|
2013-03-23 11:02:59 -04:00
|
|
|
Bundler.require(*Rails.groups(assets: %w(development test profile)))
|
2013-02-05 14:16:51 -05:00
|
|
|
# If you want your assets lazily compiled in production, use this line
|
|
|
|
# Bundler.require(:default, :assets, Rails.env)
|
|
|
|
end
|
|
|
|
|
|
|
|
module Discourse
|
|
|
|
class Application < Rails::Application
|
|
|
|
# Settings in config/environments/* take precedence over those specified here.
|
|
|
|
# Application configuration should go into files in config/initializers
|
|
|
|
# -- all .rb files in that directory are automatically loaded.
|
|
|
|
|
|
|
|
require 'discourse'
|
|
|
|
|
2013-05-14 01:20:28 -04:00
|
|
|
# mocha hates us, active_support/testing/mochaing.rb line 2 is requiring the wrong
|
|
|
|
# require, patched in source, on upgrade remove this
|
|
|
|
if Rails.env.test? || Rails.env.development?
|
|
|
|
require "mocha/version"
|
|
|
|
require "mocha/deprecation"
|
|
|
|
if Mocha::VERSION == "0.13.3" && Rails::VERSION::STRING == "3.2.12"
|
|
|
|
Mocha::Deprecation.mode = :disabled
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Custom directories with classes and modules you want to be autoloadable.
|
|
|
|
config.autoload_paths += %W(#{config.root}/app/serializers)
|
|
|
|
|
|
|
|
# Only load the plugins named here, in the order given (default is alphabetical).
|
|
|
|
# :all can be used as a placeholder for all plugins not explicitly named.
|
|
|
|
# config.plugins = [ :exception_notification, :ssl_requirement, :all ]
|
|
|
|
|
|
|
|
config.assets.paths += %W(#{config.root}/config/locales)
|
|
|
|
|
2013-04-28 20:02:04 -04:00
|
|
|
config.assets.precompile += ['admin.js', 'admin.css', 'shiny/shiny.css', 'preload_store.js', 'jquery.js']
|
|
|
|
|
|
|
|
# Precompile all defer
|
2013-04-29 02:52:56 -04:00
|
|
|
Dir.glob("#{config.root}/app/assets/javascripts/defer/*.js").each do |file|
|
2013-04-29 03:11:20 -04:00
|
|
|
config.assets.precompile << "defer/#{File.basename(file)}"
|
2013-04-28 20:02:04 -04:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-02-28 14:31:39 -05:00
|
|
|
# Precompile all available locales
|
2013-04-29 02:52:56 -04:00
|
|
|
Dir.glob("#{config.root}/app/assets/javascripts/locales/*.js.erb").each do |file|
|
2013-03-06 09:45:07 -05:00
|
|
|
config.assets.precompile << "locales/#{file.match(/([a-z_A-Z]+\.js)\.erb$/)[1]}"
|
2013-02-28 14:31:39 -05:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# Activate observers that should always be running.
|
|
|
|
config.active_record.observers = [
|
|
|
|
:user_email_observer,
|
2013-02-25 11:42:20 -05:00
|
|
|
:user_action_observer,
|
2013-02-05 14:16:51 -05:00
|
|
|
:post_alert_observer,
|
|
|
|
:search_observer
|
|
|
|
]
|
|
|
|
|
|
|
|
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
|
|
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
|
|
config.time_zone = 'Eastern Time (US & Canada)'
|
|
|
|
|
|
|
|
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
|
|
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
|
|
# config.i18n.default_locale = :de
|
|
|
|
|
|
|
|
# Configure the default encoding used in templates for Ruby 1.9.
|
2013-02-18 01:34:43 -05:00
|
|
|
config.encoding = 'utf-8'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Configure sensitive parameters which will be filtered from the log file.
|
|
|
|
config.filter_parameters += [:password]
|
|
|
|
|
|
|
|
# Enable the asset pipeline
|
|
|
|
config.assets.enabled = true
|
|
|
|
|
|
|
|
# Version of your assets, change this if you want to expire all your assets
|
|
|
|
config.assets.version = '1.2.4'
|
|
|
|
|
|
|
|
# We need to be able to spin threads
|
|
|
|
config.active_record.thread_safe!
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
# see: http://stackoverflow.com/questions/11894180/how-does-one-correctly-add-custom-sql-dml-in-migrations/11894420#11894420
|
2013-02-05 14:16:51 -05:00
|
|
|
config.active_record.schema_format = :sql
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
# per https://www.owasp.org/index.php/Password_Storage_Cheat_Sheet
|
2013-02-05 14:16:51 -05:00
|
|
|
config.pbkdf2_iterations = 64000
|
|
|
|
|
|
|
|
# dumping rack lock cause the message bus does not work with it (throw :async, it catches Exception)
|
|
|
|
# see: https://github.com/sporkrb/spork/issues/66
|
|
|
|
# rake assets:precompile also fails
|
|
|
|
config.threadsafe! unless $PROGRAM_NAME =~ /spork|rake/
|
|
|
|
|
|
|
|
# route all exceptions via our router
|
|
|
|
config.exceptions_app = self.routes
|
|
|
|
|
|
|
|
# Our templates shouldn't start with 'discourse/templates'
|
|
|
|
config.handlebars.templates_root = 'discourse/templates'
|
|
|
|
|
2013-03-11 08:33:20 -04:00
|
|
|
require 'discourse_redis'
|
2013-02-05 14:16:51 -05:00
|
|
|
# Use redis for our cache
|
2013-03-11 08:33:20 -04:00
|
|
|
config.cache_store = DiscourseRedis.new_redis_store
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# we configure rack cache on demand in an initializer
|
|
|
|
# our setup does not use rack cache and instead defers to nginx
|
2013-02-05 14:16:51 -05:00
|
|
|
config.action_dispatch.rack_cache = nil
|
|
|
|
|
2013-04-11 02:24:08 -04:00
|
|
|
# ember stuff only used for asset precompliation, production variant plays 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.3.js"
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
# So open id logs somewhere sane
|
2013-02-25 11:42:20 -05:00
|
|
|
config.after_initialize do
|
2013-02-05 14:16:51 -05:00
|
|
|
OpenID::Util.logger = Rails.logger
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|