You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

development.rb 824B

1234567891011121314151617181920212223
  1. # frozen_string_literal: true
  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 on
  5. # every request. This slows down response time but is perfect for development
  6. # since you don't have to restart the webserver 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 and disable caching
  11. config.consider_all_requests_local = true
  12. config.action_controller.perform_caching = false
  13. # Disable delivery errors
  14. config.action_mailer.raise_delivery_errors = false
  15. # Print deprecation notices to stderr and the Rails logger.
  16. config.active_support.deprecation = [:stderr, :log]
  17. end