tracks/config/database.yml.tmpl

27 lines
624 B
Cheetah
Raw Normal View History

development:
adapter: mysql
database: tracks
# set this if you are storing utf8 in your mysql database to handle strings
# like "Réné".Not needed for sqlite. For PostgreSQL use encoding: unicode
# encoding: utf8
host: localhost
username: root
2012-01-30 03:42:47 +01:00
password:
test: &TEST
adapter: sqlite3
database: ":memory:"
production:
adapter: mysql
database: tracks
# set this if you are storing utf8 in your mysql database to handle strings
# like "Réné".Not needed for sqlite. For PostgreSQL use encoding: unicode
# encoding: utf8
host: localhost
username: root
2012-01-30 03:42:47 +01:00
password:
cucumber:
<<: *TEST