I'm using the gem called "bullet" https://github.com/flyerhzm/bullet This help to avoid N + 1 problem.
I'd like to use this in production mode with my account(User.id==1) Is it possible?
I've coded this in /config/environments/production.rb but the alert pops up whoever the users access.
config.after_initialize do
Bullet.enable = true
Bullet.alert = true
Bullet.bullet_logger = true
Bullet.console = true
Bullet.rails_logger = true
end