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