2023-07-12 17:47:08 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2023-07-13 17:36:07 +10:00
|
|
|
require 'active_support/core_ext/integer/time'
|
|
|
|
|
2016-02-21 08:53:20 +11:00
|
|
|
Rails.application.configure do
|
|
|
|
# Settings specified here will take precedence over those in config/application.rb.
|
|
|
|
|
2023-07-13 17:36:07 +10: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-21 08:53:20 +11: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-18 01:56:23 +10:00
|
|
|
# Show full error reports.
|
2016-09-08 10:40:51 +10:00
|
|
|
config.consider_all_requests_local = true
|
2016-08-18 01:56:23 +10:00
|
|
|
|
2023-07-13 17:36:07 +10:00
|
|
|
# Enable server timing
|
|
|
|
config.server_timing = true
|
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
# Enable/disable caching. By default caching is disabled.
|
2018-04-12 22:45:17 +10:00
|
|
|
# Run rails dev:cache to toggle caching.
|
2023-05-04 13:50:40 +10:00
|
|
|
if Rails.root.join('tmp', 'caching-dev.txt').exist?
|
2016-08-18 01:56:23 +10:00
|
|
|
config.action_controller.perform_caching = true
|
2023-07-13 17:36:07 +10:00
|
|
|
config.action_controller.enable_fragment_cache_logging = true
|
|
|
|
|
2021-03-17 20:09:55 +11:00
|
|
|
config.cache_store = :redis_cache_store, REDIS_CACHE_PARAMS
|
2023-07-13 17:36:07 +10:00
|
|
|
config.public_file_server.headers = {
|
|
|
|
'Cache-Control' => "public, max-age=#{2.days.to_i}",
|
|
|
|
}
|
2016-08-18 01:56:23 +10:00
|
|
|
else
|
|
|
|
config.action_controller.perform_caching = false
|
2023-07-13 17:36:07 +10:00
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
config.cache_store = :null_store
|
|
|
|
end
|
2016-02-21 08:53:20 +11:00
|
|
|
|
2023-08-29 18:20:36 +10:00
|
|
|
config.action_controller.forgery_protection_origin_check = ENV['DISABLE_FORGERY_REQUEST_PROTECTION'].nil?
|
|
|
|
|
2017-05-13 00:47:49 +10:00
|
|
|
ActiveSupport::Logger.new(STDOUT).tap do |logger|
|
|
|
|
logger.formatter = config.log_formatter
|
|
|
|
config.logger = ActiveSupport::TaggedLogging.new(logger)
|
|
|
|
end
|
|
|
|
|
2017-07-14 06:15:32 +10:00
|
|
|
# Generate random VAPID keys
|
2023-03-16 12:53:55 +11: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-14 06:15:32 +10:00
|
|
|
|
2016-02-21 08:53:20 +11:00
|
|
|
# Don't care if the mailer can't send.
|
|
|
|
config.action_mailer.raise_delivery_errors = false
|
2017-06-02 04:53:37 +10:00
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
config.action_mailer.perform_caching = false
|
2016-02-21 08:53:20 +11:00
|
|
|
|
|
|
|
# Print deprecation notices to the Rails logger.
|
|
|
|
config.active_support.deprecation = :log
|
|
|
|
|
2023-07-13 17:36:07 +10: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-21 08:53:20 +11:00
|
|
|
# Raise an error on page load if there are pending migrations.
|
|
|
|
config.active_record.migration_error = :page_load
|
|
|
|
|
2023-07-13 17:36:07 +10:00
|
|
|
# Highlight code that triggered database queries in logs.
|
|
|
|
config.active_record.verbose_query_logs = true
|
|
|
|
|
2016-02-21 08:53:20 +11:00
|
|
|
# Debug mode disables concatenation and preprocessing of assets.
|
|
|
|
config.assets.debug = true
|
|
|
|
|
2016-08-18 01:56:23 +10:00
|
|
|
# Suppress logger output for asset requests.
|
|
|
|
config.assets.quiet = true
|
2016-02-21 08:53:20 +11:00
|
|
|
|
|
|
|
# Adds additional error checking when serving assets at runtime.
|
|
|
|
# Checks for improperly declared sprockets dependencies.
|
|
|
|
# Raises helpful error messages.
|
|
|
|
config.assets.raise_runtime_errors = true
|
|
|
|
|
2023-07-13 17:36:07 +10: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-20 00:57:30 +11:00
|
|
|
|
2023-07-13 17:36:07 +10:00
|
|
|
# Uncomment if you wish to allow Action Cable access from any origin.
|
|
|
|
# config.action_cable.disable_request_forgery_protection = true
|
2016-08-18 01:56:23 +10:00
|
|
|
|
2017-07-07 08:12:12 +10:00
|
|
|
config.action_mailer.default_options = { from: 'notifications@localhost' }
|
|
|
|
|
2017-01-22 08:19:13 +11:00
|
|
|
# If using a Heroku, Vagrant or generic remote development environment,
|
2017-01-21 20:22:49 +11:00
|
|
|
# use letter_opener_web, accessible at /letter_opener.
|
|
|
|
# Otherwise, use letter_opener, which launches a browser window to view sent mail.
|
2017-01-22 08:19:13 +11:00
|
|
|
config.action_mailer.delivery_method = (ENV['HEROKU'] || ENV['VAGRANT'] || ENV['REMOTE_DEV']) ? :letter_opener_web : :letter_opener
|
2016-03-26 23:42:10 +11:00
|
|
|
|
2023-03-16 12:53:55 +11:00
|
|
|
# We provide a default secret for the development environment here.
|
|
|
|
# This value should not be used in production environments!
|
2018-03-05 06:28:24 +11:00
|
|
|
config.x.otp_secret = ENV.fetch('OTP_SECRET', '1fc2b87989afa6351912abeebe31ffc5c476ead9bf8b3d74cbc4a302c7b69a45b40b1bbef3506ddad73e942e15ed5ca4b402bf9a66423626051104f4b5f05109')
|
2016-02-21 08:53:20 +11:00
|
|
|
end
|
2016-08-18 23:49:51 +10:00
|
|
|
|
2023-03-05 02:38:28 +11:00
|
|
|
Redis.raise_deprecations = true
|