Allow the development enviroment to work in offline mode

This commit is contained in:
Tom Hughes 2012-03-21 10:01:23 +00:00
parent 65b2b22729
commit d1e10d2313

View file

@ -23,11 +23,15 @@ OpenStreetMap::Application.configure do
config.action_dispatch.best_standards_support = :builtin
# Raise exception on mass assignment protection for Active Record models
config.active_record.mass_assignment_sanitizer = :strict
unless STATUS == :database_offline
config.active_record.mass_assignment_sanitizer = :strict
end
# Log the query plan for queries taking more than this (works
# with SQLite, MySQL, and PostgreSQL)
config.active_record.auto_explain_threshold_in_seconds = 0.5
unless STATUS == :database_offline
config.active_record.auto_explain_threshold_in_seconds = 0.5
end
# Do not compress assets
config.assets.compress = false