mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 06:28:57 +08:00
only enable bullet on demand
This commit is contained in:
parent
c182836709
commit
473363e0fa
2
Gemfile
2
Gemfile
|
@ -144,10 +144,10 @@ group :test, :development do
|
|||
gem 'spork-rails'
|
||||
gem 'pry-nav'
|
||||
gem 'byebug', require: ENV['RM_INFO'].nil?
|
||||
gem 'bullet'
|
||||
end
|
||||
|
||||
group :development do
|
||||
gem 'bullet', require: !!ENV['BULLET']
|
||||
gem 'better_errors'
|
||||
gem 'binding_of_caller'
|
||||
gem 'librarian', '>= 0.0.25', require: false
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
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
|
||||
|
@ -53,7 +54,9 @@ Discourse::Application.configure do
|
|||
end
|
||||
|
||||
config.after_initialize do
|
||||
Bullet.enable = true
|
||||
Bullet.rails_logger = true
|
||||
if ENV['BULLET']
|
||||
Bullet.enable = true
|
||||
Bullet.rails_logger = true
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue
Block a user