development.rb 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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 = :memory_store
  16. config.public_file_server.headers = {
  17. 'Cache-Control' => "public, max-age=#{2.days.to_i}"
  18. }
  19. else
  20. config.action_controller.perform_caching = false
  21. config.cache_store = :null_store
  22. end
  23. # Print deprecation notices to the Rails logger.
  24. config.active_support.deprecation = :log
  25. # Raise an error on page load if there are pending migrations.
  26. config.active_record.migration_error = :page_load
  27. # Highlight code that triggered database queries in logs.
  28. config.active_record.verbose_query_logs = true
  29. # Raises error for missing translations
  30. # config.action_view.raise_on_missing_translations = true
  31. # Use an evented file watcher to asynchronously detect changes in source code,
  32. # routes, locales, etc. This feature depends on the listen gem.
  33. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  34. end