]> git.openstreetmap.org Git - rails.git/blobdiff - config/environments/development.rb
Update to rails 5.1.4
[rails.git] / config / environments / development.rb
index 9101bb1ebc49485db70919089643860909c67e04..8e7213a9d35dd080ffe4d2798db9d0c7a879afce 100644 (file)
@@ -12,6 +12,20 @@ Rails.application.configure do
   # 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=#{2.days.seconds.to_i}"
+    }
+  else
+    config.action_controller.perform_caching = false
+
+    config.cache_store = :null_store
+  end
+
   # Don't care if the mailer can't send.
   config.action_mailer.raise_delivery_errors = false