1
0

development.rb 3.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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. # Run rails dev:cache to toggle caching.
  13. if Rails.root.join('tmp/caching-dev.txt').exist?
  14. config.action_controller.perform_caching = true
  15. config.cache_store = :redis_cache_store, REDIS_CACHE_PARAMS
  16. else
  17. config.action_controller.perform_caching = false
  18. config.cache_store = :null_store
  19. end
  20. ActiveSupport::Logger.new(STDOUT).tap do |logger|
  21. logger.formatter = config.log_formatter
  22. config.logger = ActiveSupport::TaggedLogging.new(logger)
  23. end
  24. # Generate random VAPID keys
  25. vapid_key = Webpush.generate_key
  26. config.x.vapid_private_key = vapid_key.private_key
  27. config.x.vapid_public_key = vapid_key.public_key
  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. config.action_mailer.default_options = { from: 'notifications@localhost' }
  51. # If using a Heroku, Vagrant or generic remote development environment,
  52. # use letter_opener_web, accessible at /letter_opener.
  53. # Otherwise, use letter_opener, which launches a browser window to view sent mail.
  54. config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
  55. config.after_initialize do
  56. Bullet.enable = true
  57. Bullet.bullet_logger = true
  58. Bullet.rails_logger = false
  59. Bullet.add_safelist type: :n_plus_one_query, class_name: 'User', association: :account
  60. end
  61. config.x.otp_secret = ENV.fetch('OTP_SECRET', '1fc2b87989afa6351912abeebe31ffc5c476ead9bf8b3d74cbc4a302c7b69a45b40b1bbef3506ddad73e942e15ed5ca4b402bf9a66423626051104f4b5f05109')
  62. end
  63. ActiveRecordQueryTrace.enabled = ENV['QUERY_TRACE_ENABLED'] == 'true'
  64. module PrivateAddressCheck
  65. def self.private_address?(*)
  66. false
  67. end
  68. end