From 92dcd21f6c327e70d5cf200768c66a0140a5376c Mon Sep 17 00:00:00 2001 From: Braulio Bhavamitra Date: Wed, 24 Jun 2015 18:16:12 -0300 Subject: [PATCH] Add staging environment --- config/environments/staging.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+), 0 deletions(-) create mode 100644 config/environments/staging.rb diff --git a/config/environments/staging.rb b/config/environments/staging.rb new file mode 100644 index 0000000..86e28fb --- /dev/null +++ b/config/environments/staging.rb @@ -0,0 +1,13 @@ +# inherit from production +require_relative 'production' + +Noosfero::Application.configure do + + # expose errors + config.consider_all_requests_local = true + + # ease debug + config.assets.compress = false + +end + -- libgit2 0.21.2