gauge/config/environments/development.rb

79 lines
2.8 KiB
Ruby
Raw Normal View History

2024-09-13 19:13:40 +03:00
require "active_support/core_ext/integer/time"
2015-10-06 15:21:46 +03:00
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2024-09-13 19:13:40 +03: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
2015-10-06 15:21:46 +03:00
# since you don't have to restart the web server when you make code changes.
2024-09-13 19:13:40 +03:00
config.enable_reloading = true
2015-10-06 15:21:46 +03:00
# Do not eager load code on boot.
config.eager_load = false
2016-10-01 02:08:20 +03:00
# Show full error reports.
config.consider_all_requests_local = true
2024-09-13 19:13:40 +03:00
# Enable server timing.
config.server_timing = true
2016-10-01 02:08:20 +03:00
# Enable/disable caching. By default caching is disabled.
2018-09-25 13:18:08 +03:00
# Run rails dev:cache to toggle caching.
2024-09-13 19:13:40 +03:00
if Rails.root.join("tmp/caching-dev.txt").exist?
2016-10-01 02:08:20 +03:00
config.action_controller.perform_caching = true
2019-10-04 11:49:32 +03:00
config.action_controller.enable_fragment_cache_logging = true
2016-10-01 02:08:20 +03:00
config.cache_store = :memory_store
2024-09-13 19:13:40 +03:00
config.public_file_server.headers = { "Cache-Control" => "public, max-age=#{2.days.to_i}" }
2016-10-01 02:08:20 +03:00
else
config.action_controller.perform_caching = false
config.cache_store = :null_store
end
2015-10-06 15:21:46 +03:00
2019-10-04 11:49:32 +03:00
# Store uploaded files on the local file system (see config/storage.yml for options).
2018-09-25 13:18:08 +03:00
config.active_storage.service = :local
2015-10-06 15:21:46 +03:00
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
2024-09-13 19:13:40 +03:00
# Disable caching for Action Mailer templates even if Action Controller
# caching is enabled.
2016-10-01 02:08:20 +03:00
config.action_mailer.perform_caching = false
2024-09-13 19:13:40 +03:00
config.action_mailer.default_url_options = { host: "localhost", port: 3000 }
2015-10-06 15:21:46 +03:00
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
2024-09-13 19:13:40 +03: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 = []
2015-10-06 15:21:46 +03:00
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
2018-09-25 13:18:08 +03:00
# Highlight code that triggered database queries in logs.
config.active_record.verbose_query_logs = true
2024-09-13 19:13:40 +03:00
# Highlight code that enqueued background job in logs.
config.active_job.verbose_enqueue_logs = true
2015-10-06 15:21:46 +03:00
2016-10-01 02:08:20 +03:00
# Suppress logger output for asset requests.
config.assets.quiet = true
2015-10-06 15:21:46 +03:00
2019-10-04 11:49:32 +03:00
# Raises error for missing translations.
2024-09-13 19:13:40 +03:00
# config.i18n.raise_on_missing_translations = true
# Annotate rendered view with file names.
config.action_view.annotate_rendered_view_with_filenames = true
# Uncomment if you wish to allow Action Cable access from any origin.
# config.action_cable.disable_request_forgery_protection = true
2016-10-01 02:08:20 +03:00
2024-09-13 19:13:40 +03:00
# Raise error when a before_action's only/except options reference missing actions.
config.action_controller.raise_on_missing_callback_actions = true
2015-10-06 15:21:46 +03:00
end