development.rb 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. # frozen_string_literal: true
  2. Rails.application.configure do
  3. # Verifies that versions and hashed value of the package contents in the project's package.json
  4. config.webpacker.check_yarn_integrity = true
  5. # Settings specified here will take precedence over those in config/application.rb.
  6. # In the development environment your application's code is reloaded on
  7. # every request. This slows down response time but is perfect for development
  8. # since you don't have to restart the web server when you make code changes.
  9. config.cache_classes = false
  10. # Do not eager load code on boot.
  11. config.eager_load = false
  12. # Show full error reports.
  13. config.consider_all_requests_local = true
  14. # Enable/disable caching. By default caching is disabled.
  15. # Run rails dev:cache to toggle caching.
  16. if Rails.root.join('tmp', 'caching-dev.txt').exist?
  17. config.action_controller.perform_caching = true
  18. config.cache_store = :memory_store
  19. config.public_file_server.headers = {
  20. 'Cache-Control' => "public, max-age=#{2.days.to_i}",
  21. }
  22. else
  23. config.action_controller.perform_caching = false
  24. config.cache_store = :null_store
  25. end
  26. # Store uploaded files on the local file system (see config/storage.yml for options)
  27. config.active_storage.service = :local
  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. # Highlight code that triggered database queries in logs.
  36. config.active_record.verbose_query_logs = true
  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. # Raises error for missing translations
  44. # config.action_view.raise_on_missing_translations = true
  45. # Use an evented file watcher to asynchronously detect changes in source code,
  46. # routes, locales, etc. This feature depends on the listen gem.
  47. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  48. end