Skip to content

Commit

Permalink
fix env configs
Browse files Browse the repository at this point in the history
  • Loading branch information
tsubik committed Feb 28, 2024
1 parent 4b59589 commit b2cf62e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config/environments/e2e.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
# Settings specified here will take precedence over those in config/application.rb.

# Code is not reloaded between requests.
config.cache_classes = true
config.enable_reloading = false

# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.enable_reloading = false
config.eager_load = true

# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
Expand Down
4 changes: 2 additions & 2 deletions config/environments/production.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
# Settings specified here will take precedence over those in config/application.rb.

# Code is not reloaded between requests.
config.cache_classes = true
config.enable_reloading = false

# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.enable_reloading = false
config.eager_load = true

# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
Expand Down
4 changes: 2 additions & 2 deletions config/environments/staging.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@
# Settings specified here will take precedence over those in config/application.rb.

# Code is not reloaded between requests.
config.cache_classes = true
config.enable_reloading = false

# Eager load code on boot. This eager loads most of Rails and
# your application in memory, allowing both threaded web servers
# and those relying on copy on write to perform better.
# Rake tasks automatically ignore this option for performance.
config.enable_reloading = false
config.eager_load = true

# Full error reports are disabled and caching is turned on.
config.consider_all_requests_local = false
Expand Down

0 comments on commit b2cf62e

Please sign in to comment.