scube-server/config/database.yml.sample
Thibault Jouan 20e8bdbf4f Change database backend to PostgreSQL
* Bundle pg gem
* Add a database config file sample
2011-09-13 19:26:13 +00:00

21 lines
273 B
Plaintext

common: &common
adapter: postgresql
encoding: unicode
pool: 5
username: scube
development:
<<: *common
database: scube_development
test: &test
<<: *common
database: scube_test
production:
<<: *common
database: scube_production
cucumber:
<<: *test