Commit a499eda4f237c15acf4fecb29e5e7555f512d17c

Authored by Antonio Terceiro
2 parents dc5507b5 92dcd21f

Merge branch 'staging-environment' into 'master'

Add staging environment

See merge request !611
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 +
... ...