2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
Discourse::Application.configure do
|
2016-07-05 09:10:42 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
# 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-18 00:44:28 +08:00
|
|
|
config.eager_load = false
|
2013-02-06 03:16:51 +08: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 14:32:48 +08:00
|
|
|
# Don't Digest assets, makes debugging uglier
|
|
|
|
config.assets.digest = false
|
|
|
|
|
2015-04-17 03:40:23 +08:00
|
|
|
config.assets.debug = false
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2014-10-04 09:32:30 +08:00
|
|
|
# Raise an error on page load if there are pending migrations
|
|
|
|
config.active_record.migration_error = :page_load
|
2013-02-06 03:16:51 +08:00
|
|
|
config.watchable_dirs['lib'] = [:rb]
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-06-06 03:33:50 +08:00
|
|
|
config.handlebars.precompile = false
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-04-11 14:24:08 +08:00
|
|
|
# we recommend you use mailcatcher https://github.com/sj26/mailcatcher
|
2013-07-05 23:32:54 +08:00
|
|
|
config.action_mailer.smtp_settings = { address: "localhost", port: 1025 }
|
2013-07-03 23:13:56 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
config.action_mailer.raise_delivery_errors = true
|
2013-03-23 23:02:59 +08:00
|
|
|
|
2013-03-22 08:39:39 +08:00
|
|
|
BetterErrors::Middleware.allow_ip! ENV['TRUSTED_IP'] if ENV['TRUSTED_IP']
|
2013-04-11 14:24:08 +08:00
|
|
|
|
2019-10-16 21:44:48 +08:00
|
|
|
if defined?(Unicorn) && ENV["UNICORN_WORKERS"].to_i != 1
|
|
|
|
# BetterErrors doesn't work with multiple unicorn workers. Disable it to avoid confusion
|
|
|
|
Rails.configuration.middleware.delete BetterErrors::Middleware
|
|
|
|
end
|
|
|
|
|
2014-07-17 06:34:30 +08:00
|
|
|
config.load_mini_profiler = true
|
2019-09-17 14:01:39 +08:00
|
|
|
if hosts = ENV['DISCOURSE_DEV_HOSTS']
|
|
|
|
config.hosts.concat(hosts.split(","))
|
|
|
|
end
|
2013-04-18 14:32:48 +08:00
|
|
|
|
|
|
|
require 'middleware/turbo_dev'
|
|
|
|
config.middleware.insert 0, Middleware::TurboDev
|
2015-04-17 10:16:37 +08:00
|
|
|
require 'middleware/missing_avatars'
|
2014-01-18 00:47:01 +08:00
|
|
|
config.middleware.insert 1, Middleware::MissingAvatars
|
2013-10-16 13:39:18 +08:00
|
|
|
|
|
|
|
config.enable_anon_caching = false
|
2014-03-18 10:13:38 +08:00
|
|
|
require 'rbtrace'
|
2014-03-24 15:03:39 +08:00
|
|
|
|
|
|
|
if emails = GlobalSetting.developer_emails
|
2016-05-27 10:18:54 +08:00
|
|
|
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
|
2014-03-24 15:03:39 +08:00
|
|
|
end
|
2016-06-02 03:48:06 +08:00
|
|
|
|
2018-03-09 14:47:57 +08:00
|
|
|
if defined?(Rails::Server) || defined?(Puma) || defined?(Unicorn)
|
2017-06-21 03:44:01 +08:00
|
|
|
require 'stylesheet/watcher'
|
|
|
|
STDERR.puts "Starting CSS change watcher"
|
|
|
|
@watcher = Stylesheet::Watcher.watch
|
|
|
|
end
|
|
|
|
|
2016-06-28 09:29:42 +08:00
|
|
|
config.after_initialize do
|
2016-07-05 09:10:42 +08:00
|
|
|
if ENV['BULLET']
|
|
|
|
Bullet.enable = true
|
|
|
|
Bullet.rails_logger = true
|
|
|
|
end
|
2016-06-28 09:29:42 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|