55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require "active_support/core_ext/integer/time"
|
|
|
|
Rails.application.configure do
|
|
config.cache_classes = false
|
|
config.eager_load = false
|
|
config.consider_all_requests_local = true
|
|
config.server_timing = true
|
|
|
|
# Enable/disable caching. By default caching is disabled.
|
|
# Run rails dev:cache to toggle caching.
|
|
if Rails.root.join("tmp/caching-dev.txt").exist?
|
|
config.action_controller.perform_caching = true
|
|
config.action_controller.enable_fragment_cache_logging = true
|
|
|
|
config.cache_store = :memory_store
|
|
config.public_file_server.headers = {
|
|
"Cache-Control" => "public, max-age=#{2.days.to_i}",
|
|
}
|
|
else
|
|
config.action_controller.perform_caching = false
|
|
|
|
config.cache_store = :null_store
|
|
end
|
|
|
|
config.active_storage.service = :local
|
|
|
|
config.action_mailer.raise_delivery_errors = true
|
|
config.action_mailer.perform_caching = false
|
|
|
|
config.active_support.deprecation = :log
|
|
config.active_support.disallowed_deprecation = :raise
|
|
config.active_support.disallowed_deprecation_warnings = []
|
|
|
|
config.active_record.migration_error = :page_load
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
config.assets.quiet = true
|
|
|
|
# Raises error for missing translations.
|
|
config.i18n.raise_on_missing_translations = true
|
|
|
|
# Annotate rendered view with file names.
|
|
config.action_view.annotate_rendered_view_with_filenames = true
|
|
|
|
# Use Mailhog
|
|
config.action_mailer.perform_deliveries = true
|
|
config.action_mailer.smtp_settings = {
|
|
address: "localhost",
|
|
port: 1025,
|
|
}
|
|
config.action_controller.raise_on_missing_callback_actions = true
|
|
end
|