2023-07-12 07:47:08 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
require 'active_support/core_ext/integer/time'
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
Rails.application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# In the development environment your application's code is reloaded any time
|
|
|
|
# it changes. This slows down response time but is perfect for development
|
2016-02-20 21:53:20 +00:00
|
|
|
# since you don't have to restart the web server when you make code changes.
|
|
|
|
config.cache_classes = false
|
|
|
|
|
|
|
|
# Do not eager load code on boot.
|
|
|
|
config.eager_load = false
|
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
# Show full error reports.
|
2016-09-08 00:40:51 +00:00
|
|
|
config.consider_all_requests_local = true
|
2016-08-17 15:56:23 +00:00
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# Enable server timing
|
|
|
|
config.server_timing = true
|
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
# Enable/disable caching. By default caching is disabled.
|
2018-04-12 12:45:17 +00:00
|
|
|
# Run rails dev:cache to toggle caching.
|
2023-05-04 03:50:40 +00:00
|
|
|
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
2016-08-17 15:56:23 +00:00
|
|
|
config.action_controller.perform_caching = true
|
2023-07-13 07:36:07 +00:00
|
|
|
config.action_controller.enable_fragment_cache_logging = true
|
|
|
|
|
2021-03-17 09:09:55 +00:00
|
|
|
config.cache_store = :redis_cache_store, REDIS_CACHE_PARAMS
|
2023-07-13 07:36:07 +00:00
|
|
|
config.public_file_server.headers = {
|
|
|
|
'Cache-Control' => "public, max-age=#{2.days.to_i}",
|
|
|
|
}
|
2016-08-17 15:56:23 +00:00
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
2023-07-13 07:36:07 +00:00
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
config.cache_store = :null_store
|
|
|
|
end
|
2016-02-20 21:53:20 +00:00
|
|
|
|
2023-08-29 08:20:36 +00:00
|
|
|
config.action_controller.forgery_protection_origin_check = ENV['DISABLE_FORGERY_REQUEST_PROTECTION'].nil?
|
|
|
|
|
2017-05-12 14:47:49 +00:00
|
|
|
ActiveSupport::Logger.new(STDOUT).tap do |logger|
|
|
|
|
logger.formatter = config.log_formatter
|
|
|
|
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
|
|
|
end
|
|
|
|
|
2017-07-13 20:15:32 +00:00
|
|
|
# Generate random VAPID keys
|
2023-03-16 01:53:55 +00:00
|
|
|
Webpush.generate_key.tap do |vapid_key|
|
|
|
|
config.x.vapid_private_key = vapid_key.private_key
|
|
|
|
config.x.vapid_public_key = vapid_key.public_key
|
|
|
|
end
|
2017-07-13 20:15:32 +00:00
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
# Don't care if the mailer can't send.
|
|
|
|
config.action_mailer.raise_delivery_errors = false
|
2017-06-01 18:53:37 +00:00
|
|
|
|
2016-08-17 15:56:23 +00:00
|
|
|
config.action_mailer.perform_caching = false
|
2016-02-20 21:53:20 +00:00
|
|
|
|
|
|
|
# Print deprecation notices to the Rails logger.
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# Raise exceptions for disallowed deprecations.
|
|
|
|
config.active_support.disallowed_deprecation = :raise
|
|
|
|
|
|
|
|
# Tell Active Support which deprecation messages to disallow.
|
|
|
|
config.active_support.disallowed_deprecation_warnings = []
|
|
|
|
|
2016-02-20 21:53:20 +00:00
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
|
|
config.active_record.migration_error = :page_load
|
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# Highlight code that triggered database queries in logs.
|
|
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
|
2023-10-25 13:56:09 +00:00
|
|
|
# Highlight code that enqueued background job in logs.
|
|
|
|
config.active_job.verbose_enqueue_logs = true
|
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# 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
|
2016-03-19 13:57:30 +00:00
|
|
|
|
2023-07-13 07:36:07 +00:00
|
|
|
# Uncomment if you wish to allow Action Cable access from any origin.
|
|
|
|
# config.action_cable.disable_request_forgery_protection = true
|
2016-08-17 15:56:23 +00:00
|
|
|
|
2017-07-06 22:12:12 +00:00
|
|
|
config.action_mailer.default_options = { from: 'notifications@localhost' }
|
|
|
|
|
2017-01-21 21:19:13 +00:00
|
|
|
# If using a Heroku, Vagrant or generic remote development environment,
|
2017-01-21 09:22:49 +00:00
|
|
|
# use letter_opener_web, accessible at /letter_opener.
|
|
|
|
# Otherwise, use letter_opener, which launches a browser window to view sent mail.
|
2024-01-25 13:28:49 +00:00
|
|
|
config.action_mailer.delivery_method = ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV'] ? :letter_opener_web : :letter_opener
|
2016-03-26 12:42:10 +00:00
|
|
|
|
2024-05-02 09:31:41 +00:00
|
|
|
# TODO: Remove once devise-two-factor data migration complete
|
2018-03-04 19:28:24 +00:00
|
|
|
config.x.otp_secret = ENV.fetch('OTP_SECRET', '1fc2b87989afa6351912abeebe31ffc5c476ead9bf8b3d74cbc4a302c7b69a45b40b1bbef3506ddad73e942e15ed5ca4b402bf9a66423626051104f4b5f05109')
|
2023-10-25 13:56:09 +00:00
|
|
|
|
|
|
|
# Raise error when a before_action's only/except options reference missing actions
|
|
|
|
config.action_controller.raise_on_missing_callback_actions = true
|
2016-02-20 21:53:20 +00:00
|
|
|
end
|
2016-08-18 13:49:51 +00:00
|
|
|
|
2023-03-04 15:38:28 +00:00
|
|
|
Redis.raise_deprecations = true
|