development.rb 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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.public_file_server.headers = {
  16. 'Cache-Control' => "public, max-age=#{2.days.to_i}"
  17. }
  18. else
  19. config.action_controller.perform_caching = false
  20. end
  21. # Store uploaded files on the local file system (see config/storage.yml for options)
  22. # config.active_storage.service = :local
  23. # Don't care if the mailer can't send.
  24. config.action_mailer.raise_delivery_errors = false
  25. config.action_mailer.perform_caching = false
  26. # Print deprecation notices to the Rails logger.
  27. config.active_support.deprecation = :log
  28. # Raise an error on page load if there are pending migrations.
  29. config.active_record.migration_error = :page_load
  30. # Highlight code that triggered database queries in logs.
  31. config.active_record.verbose_query_logs = true
  32. # Debug mode disables concatenation and preprocessing of assets.
  33. # This option may cause significant delays in view rendering with a large
  34. # number of complex assets.
  35. config.assets.debug = false
  36. # Suppress logger output for asset requests.
  37. config.assets.quiet = true
  38. # Raises error for missing translations
  39. # config.action_view.raise_on_missing_translations = true
  40. # Use an evented file watcher to asynchronously detect changes in source code,
  41. # routes, locales, etc. This feature depends on the listen gem.
  42. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  43. # Asset digests allow you to set far-future HTTP expiration dates on all assets,
  44. # yet still be able to expire them through the digest params.
  45. config.assets.digest = false
  46. # Adds additional error checking when serving assets at runtime.
  47. # Checks for improperly declared sprockets dependencies.
  48. # Raises helpful error messages.
  49. config.assets.raise_runtime_errors = true
  50. # Raises error for missing translations
  51. # config.action_view.raise_on_missing_translations = true
  52. # Automatically inject JavaScript needed for LiveReload
  53. if ENV['RAKE_LIVE_RELOAD'].present?
  54. require 'rack-livereload'
  55. config.middleware.insert_after(
  56. ActionDispatch::Static,
  57. Rack::LiveReload,
  58. no_swf: true,
  59. min_delay: 500, # default 1000
  60. max_delay: 10_000, # default 60_000
  61. live_reload_port: 35_738
  62. )
  63. end
  64. end