parsley/config/environments/development.rb

57 lines
2.0 KiB
Ruby
Raw Normal View History

2016-01-12 18:43:00 -06:00
Rails.application.configure do
2018-03-29 01:57:00 -05:00
# Verifies that versions and hashed value of the package contents in the project's package.json
config.webpacker.check_yarn_integrity = true
2016-01-12 18:43:00 -06:00
# Settings specified here will take precedence over those in config/application.rb.
# In the development environment your application's code is reloaded on
# every request. This slows down response time but is perfect for development
# 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
# Enable/disable caching. By default caching is disabled.
if Rails.root.join('tmp/caching-dev.txt').exist?
config.action_controller.perform_caching = true
config.cache_store = :memory_store
config.public_file_server.headers = {
'Cache-Control' => 'public, max-age=172800'
}
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
# Raise an error on page load if there are pending migrations.
config.active_record.migration_error = :page_load
2018-03-29 02:15:47 -05:00
# # Debug mode disables concatenation and preprocessing of assets.
# # This option may cause significant delays in view rendering with a large
# # number of complex assets.
# config.assets.debug = true
#
# # Suppress logger output for asset requests.
# config.assets.quiet = true
2016-01-12 18:43:00 -06:00
# Raises error for missing translations
# config.action_view.raise_on_missing_translations = true
2016-07-07 17:47:47 -05:00
# Use an evented file watcher to asynchronously detect changes in source code,
# routes, locales, etc. This feature depends on the listen gem.
# config.file_watcher = ActiveSupport::EventedFileUpdateChecker
2016-01-12 18:43:00 -06:00
end