parsley/config/environments/development.rb

66 lines
2.2 KiB
Ruby
Raw Normal View History

2022-12-01 18:02:26 -06:00
require "active_support/core_ext/integer/time"
2016-01-12 18:43:00 -06:00
Rails.application.configure do
# Settings specified here will take precedence over those in config/application.rb.
2022-12-01 18:02:26 -06: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-01-12 18:43:00 -06: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-07-07 17:47:47 -05:00
# Show full error reports.
config.consider_all_requests_local = true
2022-12-01 18:02:26 -06:00
# Enable server timing
config.server_timing = true
2016-07-07 17:47:47 -05:00
# Enable/disable caching. By default caching is disabled.
2020-05-02 14:12:04 -05:00
# Run rails dev:cache to toggle caching.
2022-12-01 18:02:26 -06:00
if Rails.root.join("tmp/caching-dev.txt").exist?
2016-07-07 17:47:47 -05:00
config.action_controller.perform_caching = true
2020-05-02 14:12:04 -05:00
config.action_controller.enable_fragment_cache_logging = true
2016-07-07 17:47:47 -05:00
2020-05-02 14:12:04 -05:00
config.cache_store = :memory_store
2016-07-07 17:47:47 -05:00
config.public_file_server.headers = {
2022-12-01 18:02:26 -06:00
"Cache-Control" => "public, max-age=#{2.days.to_i}"
2016-07-07 17:47:47 -05:00
}
else
config.action_controller.perform_caching = false
config.cache_store = :null_store
end
2016-01-12 18:43:00 -06:00
# Don't care if the mailer can't send.
config.action_mailer.raise_delivery_errors = false
2016-07-07 17:47:47 -05:00
config.action_mailer.perform_caching = false
2016-01-12 18:43:00 -06:00
# Print deprecation notices to the Rails logger.
config.active_support.deprecation = :log
2022-12-01 18:02:26 -06: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-01-12 18:43:00 -06:00
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
2020-05-02 14:12:04 -05:00
# Highlight code that triggered database queries in logs.
config.active_record.verbose_query_logs = true
2016-01-12 18:43:00 -06:00
2020-05-02 14:12:04 -05:00
# Raises error for missing translations.
2022-12-01 18:02:26 -06:00
# config.i18n.raise_on_missing_translations = true
# Annotate rendered view with file names.
# config.action_view.annotate_rendered_view_with_filenames = true
2016-07-07 17:47:47 -05:00
2022-12-01 18:02:26 -06:00
# Uncomment if you wish to allow Action Cable access from any origin.
# config.action_cable.disable_request_forgery_protection = true
2016-01-12 18:43:00 -06:00
end