Created
January 14, 2014 20:31
-
-
Save dcki/8425125 to your computer and use it in GitHub Desktop.
database.yml from engine test dummy app
test_app/vendor/extensions/things/spec/dummy/config/database.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
login: &login | |
adapter: sqlite3 | |
pool: 5 | |
timeout: 5000 | |
development: | |
<<: *login | |
database: dummy_dev | |
test: | |
<<: *login | |
database: dummy_test | |
production: | |
<<: *login | |
database: dummy_prod |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment