added database.yml to .gitignore, created database.yml.example, set db path to withink BikeBike
This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user