2007-03-30 04:36:52 +00:00
|
|
|
development:
|
2012-04-05 22:19:47 +02:00
|
|
|
adapter: mysql2
|
2007-03-30 04:36:52 +00:00
|
|
|
database: tracks
|
2011-01-11 05:53:15 +01:00
|
|
|
# set this if you are storing utf8 in your mysql database to handle strings
|
2012-04-05 22:19:47 +02:00
|
|
|
# like "Réné". Not needed for sqlite. For PostgreSQL use encoding: unicode
|
2011-01-11 05:53:15 +01:00
|
|
|
# encoding: utf8
|
2007-03-30 04:36:52 +00:00
|
|
|
host: localhost
|
|
|
|
|
username: root
|
2012-01-30 03:42:47 +01:00
|
|
|
password:
|
2007-03-30 04:36:52 +00:00
|
|
|
|
|
|
|
|
production:
|
2012-04-05 22:19:47 +02:00
|
|
|
adapter: mysql2
|
2007-03-30 04:36:52 +00:00
|
|
|
database: tracks
|
2011-01-11 05:53:15 +01:00
|
|
|
# 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
|
2007-03-30 04:36:52 +00:00
|
|
|
host: localhost
|
|
|
|
|
username: root
|
2012-01-30 03:42:47 +01:00
|
|
|
password:
|
2010-02-02 22:52:32 +01:00
|
|
|
|
2012-04-05 22:19:47 +02:00
|
|
|
# The following is an example to configure Tracks to use sqlite
|
|
|
|
|
|
|
|
|
|
#production:
|
|
|
|
|
# adapter: sqlite3
|
|
|
|
|
# database: db/tracks-20-blank.sqlite3.db
|
|
|
|
|
# pool: 5
|
|
|
|
|
# timeout: 5000
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Warning: The database defined as "test" will be erased and
|
|
|
|
|
# re-generated from your development database when you run "rake".
|
|
|
|
|
# Do not set this db to the same as development or production.
|
|
|
|
|
test: &TEST
|
2012-10-09 12:22:07 -05:00
|
|
|
adapter: mysql2
|
|
|
|
|
database: tracks_test
|
|
|
|
|
username: root
|
|
|
|
|
encoding: utf8
|
2012-04-05 22:19:47 +02:00
|
|
|
|
2010-02-02 22:52:32 +01:00
|
|
|
cucumber:
|
|
|
|
|
<<: *TEST
|