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.

85 lines
2.9 KiB

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