FIX: start filesystem watcher when running under rails s

This commit is contained in:
Sam 2017-06-20 15:44:01 -04:00
parent 1716747810
commit 9f8388c2eb
1 changed files with 6 additions and 5 deletions

View File

@ -49,16 +49,17 @@ Discourse::Application.configure do
require 'rbtrace'
require 'stylesheet/watcher'
if defined? Puma
STDERR.puts "Starting CSS change watcher"
@watcher = Stylesheet::Watcher.watch
end
if emails = GlobalSetting.developer_emails
config.developer_emails = emails.split(",").map(&:downcase).map(&:strip)
end
if defined? Rails::Server || defined? Puma
require 'stylesheet/watcher'
STDERR.puts "Starting CSS change watcher"
@watcher = Stylesheet::Watcher.watch
end
config.after_initialize do
if ENV['BULLET']
Bullet.enable = true