Commit 92dcd21f6c327e70d5cf200768c66a0140a5376c

Authored by Braulio Bhavamitra
1 parent a97f8e19

Add staging environment

Showing 1 changed file with 13 additions and 0 deletions   Show diff stats
config/environments/staging.rb 0 → 100644
... ... @@ -0,0 +1,13 @@
  1 +# inherit from production
  2 +require_relative 'production'
  3 +
  4 +Noosfero::Application.configure do
  5 +
  6 + # expose errors
  7 + config.consider_all_requests_local = true
  8 +
  9 + # ease debug
  10 + config.assets.compress = false
  11 +
  12 +end
  13 +
... ...