development.rb 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. Rails.application.configure do
  2. # Settings specified here will take precedence over those in config/application.rb.
  3. # In the development environment your application's code is reloaded on
  4. # every request. This slows down response time but is perfect for development
  5. # since you don't have to restart the web server when you make code changes.
  6. config.cache_classes = false
  7. # Do not eager load code on boot.
  8. config.eager_load = false
  9. # Show full error reports.
  10. config.consider_all_requests_local = true
  11. # Enable/disable caching. By default caching is disabled.
  12. if Rails.root.join('tmp/caching-dev.txt').exist?
  13. config.action_controller.perform_caching = true
  14. config.public_file_server.headers = {
  15. 'Cache-Control' => 'public, max-age=172800',
  16. }
  17. else
  18. config.action_controller.perform_caching = false
  19. config.cache_store = :null_store
  20. end
  21. # Don't care if the mailer can't send.
  22. config.action_mailer.raise_delivery_errors = false
  23. config.action_mailer.perform_caching = false
  24. # Print deprecation notices to the Rails logger.
  25. config.active_support.deprecation = :log
  26. # Raise an error on page load if there are pending migrations.
  27. config.active_record.migration_error = :page_load
  28. # Debug mode disables concatenation and preprocessing of assets.
  29. # This option may cause significant delays in view rendering with a large
  30. # number of complex assets.
  31. config.assets.debug = true
  32. # Suppress logger output for asset requests.
  33. config.assets.quiet = true
  34. # Adds additional error checking when serving assets at runtime.
  35. # Checks for improperly declared sprockets dependencies.
  36. # Raises helpful error messages.
  37. config.assets.raise_runtime_errors = true
  38. # Raises error for missing translations
  39. # config.action_view.raise_on_missing_translations = true
  40. # Use an evented file watcher to asynchronously detect changes in source code,
  41. # routes, locales, etc. This feature depends on the listen gem.
  42. # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  43. # If using a Heroku, Vagrant or generic remote development environment,
  44. # use letter_opener_web, accessible at /letter_opener.
  45. # Otherwise, use letter_opener, which launches a browser window to view sent mail.
  46. config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
  47. config.after_initialize do
  48. Bullet.enable = true
  49. Bullet.bullet_logger = true
  50. Bullet.rails_logger = false
  51. Bullet.add_whitelist type: :n_plus_one_query, class_name: 'User', association: :account
  52. end
  53. end
  54. ActiveRecordQueryTrace.enabled = ENV.fetch('QUERY_TRACE_ENABLED') { false }