# frozen_string_literal: true require Rails.root.join('config/environments/shared') Rails.application.configure do # Settings specified here will take precedence over those in config/application.rb # Match production env as close as possible while keeping extensive (debug-level) logging. config.log_level = :debug config.log_tags = [:request_id] config.eager_load = true config.active_record.cache_versioning = false # Enable locale fallbacks for I18n (makes lookups for any locale fall back to # the I18n.default_locale when a translation cannot be found). config.i18n.fallbacks = true # Do not dump schema after migrations. config.active_record.dump_schema_after_migration = false end