development.rb 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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, ENV['REDIS_URL'], REDIS_CACHE_PARAMS
  15. config.public_file_server.headers = {
  16. 'Cache-Control' => "public, max-age=#{2.days.seconds.to_i}",
  17. }
  18. else
  19. config.action_controller.perform_caching = false
  20. config.cache_store = :null_store
  21. end
  22. ActiveSupport::Logger.new(STDOUT).tap do |logger|
  23. logger.formatter = config.log_formatter
  24. config.logger = ActiveSupport::TaggedLogging.new(logger)
  25. end
  26. # Generate random VAPID keys
  27. vapid_key = Webpush.generate_key
  28. config.x.vapid_private_key = vapid_key.private_key
  29. config.x.vapid_public_key = vapid_key.public_key
  30. # Don't care if the mailer can't send.
  31. config.action_mailer.raise_delivery_errors = false
  32. config.action_mailer.perform_caching = false
  33. # Print deprecation notices to the Rails logger.
  34. config.active_support.deprecation = :log
  35. # Raise an error on page load if there are pending migrations.
  36. config.active_record.migration_error = :page_load
  37. # Debug mode disables concatenation and preprocessing of assets.
  38. # This option may cause significant delays in view rendering with a large
  39. # number of complex assets.
  40. config.assets.debug = true
  41. # Suppress logger output for asset requests.
  42. config.assets.quiet = true
  43. # Adds additional error checking when serving assets at runtime.
  44. # Checks for improperly declared sprockets dependencies.
  45. # Raises helpful error messages.
  46. config.assets.raise_runtime_errors = true
  47. # Raises error for missing translations
  48. # config.action_view.raise_on_missing_translations = true
  49. # Use an evented file watcher to asynchronously detect changes in source code,
  50. # routes, locales, etc. This feature depends on the listen gem.
  51. # config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  52. config.action_mailer.default_options = { from: 'notifications@localhost' }
  53. # If using a Heroku, Vagrant or generic remote development environment,
  54. # use letter_opener_web, accessible at /letter_opener.
  55. # Otherwise, use letter_opener, which launches a browser window to view sent mail.
  56. config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
  57. config.after_initialize do
  58. Bullet.enable = true
  59. Bullet.bullet_logger = true
  60. Bullet.rails_logger = false
  61. Bullet.add_whitelist type: :n_plus_one_query, class_name: 'User', association: :account
  62. end
  63. end
  64. ActiveRecordQueryTrace.enabled = ENV.fetch('QUERY_TRACE_ENABLED') { false }
  65. module PrivateAddressCheck
  66. def self.private_address?(*)
  67. false
  68. end
  69. end