2022-11-20 15:06:27 -05:00
|
|
|
require "active_support/core_ext/integer/time"
|
|
|
|
|
|
|
|
Rails.application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
|
|
|
|
|
|
|
# In the development environment your application's code is reloaded any time
|
|
|
|
# it changes. This slows down response time but is perfect for development
|
|
|
|
# since you don't have to restart the web server when you make code changes.
|
2023-10-10 23:01:12 -04:00
|
|
|
config.enable_reloading = true
|
2022-11-20 15:06:27 -05:00
|
|
|
|
|
|
|
# Do not eager load code on boot.
|
|
|
|
config.eager_load = false
|
|
|
|
|
|
|
|
# Show full error reports.
|
|
|
|
config.consider_all_requests_local = true
|
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
# Enable server timing.
|
2022-11-20 15:06:27 -05:00
|
|
|
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
|
2024-06-21 23:35:36 -04:00
|
|
|
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
|
2022-11-20 15:06:27 -05:00
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
|
|
|
end
|
|
|
|
|
2024-08-01 22:37:50 -04:00
|
|
|
# Change this to :null_store to avoid any caching
|
|
|
|
config.cache_store = :memory_store
|
|
|
|
|
2022-11-20 15:06:27 -05:00
|
|
|
# Store uploaded files on the local file system (see config/storage.yml for options).
|
|
|
|
config.active_storage.service = :local
|
|
|
|
|
|
|
|
# Don't care if the mailer can't send.
|
|
|
|
config.action_mailer.raise_delivery_errors = false
|
|
|
|
|
2024-08-01 22:37:50 -04:00
|
|
|
# Disable caching for Action Mailer templates even if Action Controller
|
|
|
|
# caching is enabled.
|
2022-11-20 15:06:27 -05:00
|
|
|
config.action_mailer.perform_caching = false
|
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
|
|
|
|
|
2022-11-20 15:06:27 -05:00
|
|
|
# Print deprecation notices to the Rails logger.
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
|
|
config.active_record.migration_error = :page_load
|
|
|
|
|
|
|
|
# Highlight code that triggered database queries in logs.
|
|
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
|
2024-07-26 21:48:32 -04:00
|
|
|
# Use a real queuing backend for Active Job (and separate queues per environment).
|
|
|
|
config.active_job.queue_adapter = :solid_queue
|
2023-10-10 23:01:12 -04:00
|
|
|
# Highlight code that enqueued background job in logs.
|
|
|
|
config.active_job.verbose_enqueue_logs = true
|
|
|
|
|
2022-11-20 15:06:27 -05:00
|
|
|
# Suppress logger output for asset requests.
|
|
|
|
config.assets.quiet = true
|
|
|
|
|
|
|
|
# Raises error for missing translations.
|
|
|
|
# config.i18n.raise_on_missing_translations = true
|
|
|
|
|
|
|
|
# Annotate rendered view with file names.
|
2024-06-21 23:35:36 -04:00
|
|
|
config.action_view.annotate_rendered_view_with_filenames = true
|
2022-11-20 15:06:27 -05:00
|
|
|
|
|
|
|
# Uncomment if you wish to allow Action Cable access from any origin.
|
|
|
|
# config.action_cable.disable_request_forgery_protection = true
|
2023-10-10 23:01:12 -04:00
|
|
|
|
2024-06-21 23:35:36 -04:00
|
|
|
# Raise error when a before_action's only/except options reference missing actions.
|
2023-10-10 23:01:12 -04:00
|
|
|
config.action_controller.raise_on_missing_callback_actions = true
|
2024-06-21 23:35:36 -04:00
|
|
|
|
|
|
|
# Apply autocorrection by RuboCop to files generated by `bin/rails generate`.
|
|
|
|
# config.generators.apply_rubocop_autocorrect_after_generate!
|
2022-11-20 15:06:27 -05:00
|
|
|
end
|