added database.yml to .gitignore, created database.yml.example, set db path to withink BikeBike

This commit is contained in:
Dylan Peerenboom
2014-09-01 14:35:09 -07:00
parent bfb5a7c237
commit e8e55fe6d1
4 changed files with 42 additions and 7 deletions
+33
View File
@@ -0,0 +1,33 @@
development:
adapter: postgresql
encoding: unicode
database: bike_bike_dev
username: bike_bike
password: admin
host: 127.0.0.1
port: 5432
pool: 5
test: &test
adapter: postgresql
encoding: unicode
database: bike_bike_test
username: bike_bike
password: admmin
host: 127.0.0.1
port: 5432
pool: 5
production:
adapter: postgresql
encoding: unicode
database: bike_bike
username: bike_bike
password: admin
host: 127.0.0.1
port: 5432
pool: 5
cucumber:
<<: *test