development.rb 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. Rails.application.configure do
  2. # Verifies that versions and hashed value of the package contents in the project's package.json
  3. config.webpacker.check_yarn_integrity = true
  4. # Settings specified here will take precedence over those in config/application.rb.
  5. # In the development environment your application's code is reloaded on
  6. # every request. This slows down response time but is perfect for development
  7. # since you don't have to restart the web server when you make code changes.
  8. config.cache_classes = false
  9. # Do not eager load code on boot.
  10. config.eager_load = false
  11. # Show full error reports.
  12. config.consider_all_requests_local = true
  13. # Enable/disable caching. By default caching is disabled.
  14. # Run rails dev:cache to toggle caching.
  15. if Rails.root.join('tmp', 'caching-dev.txt').exist?
  16. config.action_controller.perform_caching = true
  17. config.cache_store = :memory_store
  18. config.public_file_server.headers = {
  19. 'Cache-Control' => "public, max-age=#{2.days.to_i}"
  20. }
  21. else
  22. config.action_controller.perform_caching = false
  23. config.cache_store = :null_store
  24. end
  25. # Store uploaded files on the local file system (see config/storage.yml for options)
  26. config.active_storage.service = :local
  27. # Don't care if the mailer can't send.
  28. config.action_mailer.raise_delivery_errors = false
  29. config.action_mailer.perform_caching = false
  30. # letter_opener gem
  31. config.action_mailer.delivery_method = :letter_opener
  32. config.action_mailer.perform_deliveries = true
  33. # devise
  34. config.action_mailer.default_url_options = { host: 'localhost', port: 3000 }
  35. # Print deprecation notices to the Rails logger.
  36. config.active_support.deprecation = :log
  37. # Raise an error on page load if there are pending migrations.
  38. config.active_record.migration_error = :page_load
  39. # Highlight code that triggered database queries in logs.
  40. config.active_record.verbose_query_logs = true
  41. # Debug mode disables concatenation and preprocessing of assets.
  42. # This option may cause significant delays in view rendering with a large
  43. # number of complex assets.
  44. config.assets.debug = true
  45. # Suppress logger output for asset requests.
  46. config.assets.quiet = true
  47. # Raises error for missing translations
  48. # config.action_view.raise_on_missing_translations = true
  49. # Use an evented file watcher to asynchronously detect changes in source code,
  50. # routes, locales, etc. This feature depends on the listen gem.
  51. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  52. end