diff --git a/config/database.yml b/config/database.yml index 15e28ff..7eb1fe2 100644 --- a/config/database.yml +++ b/config/database.yml @@ -1,10 +1,14 @@ -# PostgreSQL version 9.0 -# gem install pg -development: +defaults: &defaults adapter: postgresql database: beathaven host: 192.168.0.128 username: postgres password: password pool: 5 - timeout: 5000 \ No newline at end of file + timeout: 5000 + +development: + <<: *defaults + +production: + <<: *defaults \ No newline at end of file