development.rb 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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. # Store uploaded files on the local file system (see config/storage.yml for options)
  24. config.active_storage.service = :local
  25. # Don't care if the mailer can't send.
  26. config.action_mailer.raise_delivery_errors = false
  27. config.action_mailer.perform_caching = false
  28. # Print deprecation notices to the Rails logger.
  29. config.active_support.deprecation = :log
  30. # Raise an error on page load if there are pending migrations.
  31. config.active_record.migration_error = :page_load
  32. # Highlight code that triggered database queries in logs.
  33. config.active_record.verbose_query_logs = true
  34. # Debug mode disables concatenation and preprocessing of assets.
  35. # This option may cause significant delays in view rendering with a large
  36. # number of complex assets.
  37. config.assets.debug = true
  38. # Suppress logger output for asset requests.
  39. config.assets.quiet = true
  40. # Raises error for missing translations
  41. # config.action_view.raise_on_missing_translations = true
  42. # Use an evented file watcher to asynchronously detect changes in source code,
  43. # routes, locales, etc. This feature depends on the listen gem.
  44. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  45. end