You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

81 lines
2.6 KiB

8 years ago
8 years ago
8 years ago
8 years ago
8 years ago
  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.cache_store = :redis_store, {
  15. host: ENV['REDIS_HOST'] || 'localhost',
  16. port: ENV['REDIS_PORT'] || 6379,
  17. db: 0,
  18. namespace: 'cache'
  19. }
  20. config.public_file_server.headers = {
  21. 'Cache-Control' => 'public, max-age=172800'
  22. }
  23. else
  24. config.action_controller.perform_caching = false
  25. config.cache_store = :null_store
  26. end
  27. # Don't care if the mailer can't send.
  28. config.action_mailer.raise_delivery_errors = false
  29. config.action_mailer.perform_caching = false
  30. # Print deprecation notices to the Rails logger.
  31. config.active_support.deprecation = :log
  32. # Raise an error on page load if there are pending migrations.
  33. config.active_record.migration_error = :page_load
  34. # Debug mode disables concatenation and preprocessing of assets.
  35. # This option may cause significant delays in view rendering with a large
  36. # number of complex assets.
  37. config.assets.debug = true
  38. # Suppress logger output for asset requests.
  39. config.assets.quiet = true
  40. # Adds additional error checking when serving assets at runtime.
  41. # Checks for improperly declared sprockets dependencies.
  42. # Raises helpful error messages.
  43. config.assets.raise_runtime_errors = true
  44. # Raises error for missing translations
  45. # config.action_view.raise_on_missing_translations = true
  46. # Use an evented file watcher to asynchronously detect changes in source code,
  47. # routes, locales, etc. This feature depends on the listen gem.
  48. # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  49. config.action_mailer.delivery_method = :letter_opener
  50. config.after_initialize do
  51. Bullet.enable = true
  52. Bullet.bullet_logger = true
  53. Bullet.rails_logger = false
  54. Bullet.add_whitelist type: :n_plus_one_query, class_name: 'User', association: :account
  55. end
  56. config.react.variant = :development
  57. end
  58. require 'sidekiq/testing'
  59. Sidekiq::Testing.inline!
  60. ActiveRecordQueryTrace.enabled = true