debian-mirror-gitlab/config/environments/development.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
3.5 KiB
Ruby
Raw Normal View History

2021-03-11 19:13:27 +05:30
# frozen_string_literal: true
2015-12-23 02:04:40 +05:30
Rails.application.configure do
2014-09-02 18:07:02 +05:30
# 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.
2021-01-29 00:20:46 +05:30
config.cache_classes = Gitlab::Utils.to_boolean(ENV['CACHE_CLASSES'], default: false)
2014-09-02 18:07:02 +05:30
# Show full error reports and disable caching
2019-09-30 21:07:59 +05:30
config.active_record.verbose_query_logs = true
2014-09-02 18:07:02 +05:30
config.consider_all_requests_local = true
2021-03-11 19:13:27 +05:30
if Rails.root.join('tmp', 'caching-dev.txt').exist?
config.action_controller.perform_caching = true
config.action_controller.enable_fragment_cache_logging = true
else
config.action_controller.perform_caching = false
end
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
# Show a warning when a large data set is loaded into memory
config.active_record.warn_on_records_fetched_greater_than = 1000
2014-09-02 18:07:02 +05:30
# Print deprecation notices to the Rails logger
config.active_support.deprecation = :log
2022-08-27 11:52:29 +05:30
# Raise exceptions for disallowed deprecations.
config.active_support.disallowed_deprecation = :raise
2016-04-02 18:10:28 +05:30
# Raise an error on page load if there are pending migrations
config.active_record.migration_error = :page_load
2014-09-02 18:07:02 +05:30
# Only use best-standards-support built into browsers
config.action_dispatch.best_standards_support = :builtin
# Do not compress assets
config.assets.compress = false
# Expands the lines which load the assets
# config.assets.debug = true
2015-10-24 18:46:33 +05:30
2022-08-13 15:12:31 +05:30
# Annotate rendered view with template file names as HTML comments
config.action_view.annotate_rendered_view_with_filenames = true
2022-08-27 11:52:29 +05:30
# ViewComponent previews
config.view_component.default_preview_layout = "component_preview"
config.view_component.preview_route = "/-/view_component/previews"
config.view_component.preview_paths << "#{config.root}/spec/components/previews"
# Push preview path now to prevent FrozenError during view_component's initialzer
config.autoload_paths.push("#{config.root}/spec/components/previews")
2022-10-11 01:57:18 +05:30
config.lookbook.page_paths = ["#{config.root}/spec/components/docs"]
2015-09-25 12:07:36 +05:30
# 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
2014-09-02 18:07:02 +05:30
# Open sent mails in browser
2016-06-02 11:05:42 +05:30
config.action_mailer.delivery_method = :letter_opener_web
2019-12-21 20:55:43 +05:30
# Log mail delivery errors
config.action_mailer.raise_delivery_errors = true
# Don't make a mess when bootstrapping a development environment
config.action_mailer.perform_deliveries = (ENV['BOOTSTRAP'] != '1')
2022-10-11 01:57:18 +05:30
config.action_mailer.preview_path = GitlabEdition.path_glob('app/mailers/previews')
2014-09-02 18:07:02 +05:30
config.eager_load = false
2016-08-24 12:49:21 +05:30
# Do not log asset requests
config.assets.quiet = true
2018-12-13 13:39:08 +05:30
2019-09-04 21:01:54 +05:30
# BetterErrors live shell (REPL) on every stack frame
BetterErrors::Middleware.allow_ip!("127.0.0.1/0")
2020-04-08 14:13:33 +05:30
# Reassign some performance related settings when we profile the app
if Gitlab::Utils.to_boolean(ENV['RAILS_PROFILE'].to_s)
warn "Hot-reloading is disabled as you are running with RAILS_PROFILE enabled"
config.cache_classes = true
config.eager_load = true
config.active_record.migration_error = false
config.active_record.verbose_query_logs = false
config.action_view.cache_template_loading = true
2022-08-13 15:12:31 +05:30
config.action_view.annotate_rendered_view_with_filenames = false
2020-04-08 14:13:33 +05:30
config.middleware.delete BetterErrors::Middleware
end
2014-09-02 18:07:02 +05:30
end