mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-24 11:10:12 +01:00
29 lines
649 B
Cheetah
29 lines
649 B
Cheetah
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
|
|
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
|
|
password:
|
|
|
|
cucumber:
|
|
<<: *TEST
|
|
|
|
selenium:
|
|
<<: *TEST
|