development.rb 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. require "active_support/core_ext/integer/time"
  2. Rails.application.configure do
  3. # Settings specified here will take precedence over those in config/application.rb.
  4. # In the development environment your application's code is reloaded any time
  5. # it changes. This slows down response time but is perfect for development
  6. # since you don't have to restart the web server when you make code changes.
  7. config.cache_classes = false
  8. # Do not eager load code on boot.
  9. config.eager_load = false
  10. # Show full error reports.
  11. config.consider_all_requests_local = true
  12. # Enable server timing
  13. config.server_timing = 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.action_controller.enable_fragment_cache_logging = true
  19. config.cache_store = :memory_store
  20. config.public_file_server.headers = {
  21. "Cache-Control" => "public, max-age=#{2.days.to_i}"
  22. }
  23. else
  24. config.action_controller.perform_caching = false
  25. config.cache_store = :null_store
  26. end
  27. # Print deprecation notices to the Rails logger.
  28. config.active_support.deprecation = :log
  29. # Raise exceptions for disallowed deprecations.
  30. config.active_support.disallowed_deprecation = :raise
  31. # Tell Active Support which deprecation messages to disallow.
  32. config.active_support.disallowed_deprecation_warnings = []
  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. # Raises error for missing translations.
  38. # config.i18n.raise_on_missing_translations = true
  39. # Annotate rendered view with file names.
  40. # config.action_view.annotate_rendered_view_with_filenames = true
  41. # Uncomment if you wish to allow Action Cable access from any origin.
  42. # config.action_cable.disable_request_forgery_protection = true
  43. # Raise error when a before_action's only/except options reference missing actions
  44. config.action_controller.raise_on_missing_callback_actions = true
  45. end