2013-02-05 14:16:51 -05:00
|
|
|
Discourse::Application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb
|
|
|
|
|
|
|
|
# In the development environment your application's code is reloaded on
|
|
|
|
# every request. This slows down response time but is perfect for development
|
|
|
|
# since you don't have to restart the web server when you make code changes.
|
|
|
|
config.cache_classes = false
|
|
|
|
|
|
|
|
# Log error messages when you accidentally call methods on nil.
|
2014-02-17 17:44:28 +01:00
|
|
|
config.eager_load = false
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
# Show full error reports and disable caching
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
|
|
|
|
# Print deprecation notices to the Rails logger
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
|
|
|
# Do not compress assets
|
|
|
|
config.assets.compress = false
|
|
|
|
|
2013-04-18 16:32:48 +10:00
|
|
|
# Don't Digest assets, makes debugging uglier
|
|
|
|
config.assets.digest = false
|
|
|
|
|
2015-04-16 15:40:23 -04:00
|
|
|
config.assets.debug = false
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2014-10-04 07:02:30 +05:30
|
|
|
# Raise an error on page load if there are pending migrations
|
|
|
|
config.active_record.migration_error = :page_load
|
2013-02-05 14:16:51 -05:00
|
|
|
config.watchable_dirs['lib'] = [:rb]
|
2013-02-25 19:42:20 +03:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
config.sass.debug_info = false
|
2013-06-05 15:33:50 -04:00
|
|
|
config.handlebars.precompile = false
|
2013-02-25 19:42:20 +03:00
|
|
|
|
2013-04-11 16:24:08 +10:00
|
|
|
# we recommend you use mailcatcher https://github.com/sj26/mailcatcher
|
2013-07-05 11:32:54 -04:00
|
|
|
config.action_mailer.smtp_settings = { address: "localhost", port: 1025 }
|
2013-07-03 11:13:56 -04:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
config.action_mailer.raise_delivery_errors = true
|
2013-03-23 20:32:59 +05:30
|
|
|
|
2013-03-21 17:39:39 -07:00
|
|
|
BetterErrors::Middleware.allow_ip! ENV['TRUSTED_IP'] if ENV['TRUSTED_IP']
|
2013-04-11 16:24:08 +10:00
|
|
|
|
2014-07-17 08:34:30 +10:00
|
|
|
config.load_mini_profiler = true
|
2013-04-18 16:32:48 +10:00
|
|
|
|
|
|
|
require 'middleware/turbo_dev'
|
|
|
|
config.middleware.insert 0, Middleware::TurboDev
|
2015-04-17 12:16:37 +10:00
|
|
|
require 'middleware/missing_avatars'
|
2014-01-17 11:47:01 -05:00
|
|
|
config.middleware.insert 1, Middleware::MissingAvatars
|
2013-10-16 16:39:18 +11:00
|
|
|
|
|
|
|
config.enable_anon_caching = false
|
2014-03-18 13:13:38 +11:00
|
|
|
require 'rbtrace'
|
2014-03-24 18:03:39 +11:00
|
|
|
|
|
|
|
if emails = GlobalSetting.developer_emails
|
2014-08-30 09:07:17 +10:00
|
|
|
config.developer_emails = emails.split(",").map(&:strip)
|
2014-03-24 18:03:39 +11:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|