development.rb 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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 web server 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.
  11. config.consider_all_requests_local = true
  12. # Enable/disable caching. By default caching is disabled.
  13. # Run rails dev:cache to toggle caching.
  14. if Rails.root.join('tmp', 'caching-dev.txt').exist?
  15. config.action_controller.perform_caching = true
  16. config.action_controller.enable_fragment_cache_logging = 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. # Print deprecation notices to the Rails logger.
  31. config.active_support.deprecation = :log
  32. # Raise an error on page load if there are pending migrations.
  33. config.active_record.migration_error = :page_load
  34. # Highlight code that triggered database queries in logs.
  35. config.active_record.verbose_query_logs = true
  36. # Debug mode disables concatenation and preprocessing of assets.
  37. # This option may cause significant delays in view rendering with a large
  38. # number of complex assets.
  39. config.assets.debug = true
  40. # Suppress logger output for asset requests.
  41. config.assets.quiet = true
  42. # Raises error for missing translations
  43. # config.action_view.raise_on_missing_translations = true
  44. # Use an evented file watcher to asynchronously detect changes in source code,
  45. # routes, locales, etc. This feature depends on the listen gem.
  46. config.file_watcher = ActiveSupport::EventedFileUpdateChecker
  47. # Remove web_console warnings when running inside a docker container:
  48. # Cannot render console from 172.27.0.1! Allowed networks: 127.0.0.1
  49. if File.file?('/.dockerenv')
  50. require 'socket'
  51. require 'ipaddr'
  52. # Whitelist docker ip for web console
  53. Socket.ip_address_list.each do |addrinfo|
  54. next unless addrinfo.ipv4?
  55. next if addrinfo.ip_address == '127.0.0.1' # Already whitelisted
  56. ip = IPAddr.new(addrinfo.ip_address).mask(24)
  57. Logger.new(STDOUT).info "Adding #{ip.inspect} to config.web_console.whitelisted_ips"
  58. config.web_console.whitelisted_ips << ip
  59. end
  60. end
  61. end