AyuntamientoMadrid/participacion

View on GitHub
config/database.yml.example

Summary

Maintainability
Test Coverage
default: &default
  adapter: postgresql
  encoding: unicode
  host: localhost
  pool: 5
  schema_search_path: "public,shared_extensions"
  username:
  password:

development: &development
  <<: *default
  database: consul_development

# The staging, preproduction and production dbs are only needed
# for running rake assets:precompile locally before deploying
staging:
  <<: *development

preproduction:
  <<: *development

production:
  <<: *development

test:
  <<: *default
  database: consul_test