From ce1b44c2a4ad786a070153b05961b8788dadf748 Mon Sep 17 00:00:00 2001 From: Dan Barber Date: Mon, 20 Nov 2017 17:13:16 -0500 Subject: [PATCH] Add proper default database config --- .gitignore | 1 - config/{database.yml.example => database.yml} | 4 ---- 2 files changed, 5 deletions(-) rename config/{database.yml.example => database.yml} (83%) diff --git a/.gitignore b/.gitignore index e7c5055..2ffafcd 100644 --- a/.gitignore +++ b/.gitignore @@ -10,7 +10,6 @@ public/system **/.DS* .sass-cache/ .envrc -config/database.yml coverage dragonfly.log data.sql diff --git a/config/database.yml.example b/config/database.yml similarity index 83% rename from config/database.yml.example rename to config/database.yml index e799388..0e0eea1 100644 --- a/config/database.yml.example +++ b/config/database.yml @@ -7,7 +7,6 @@ development: adapter: postgresql host: localhost database: danbarberphoto-dev - username: danbarberphoto # Warning: The database defined as "test" will be erased and # re-generated from your development database when you run "rake". @@ -16,13 +15,10 @@ test: adapter: postgresql host: localhost database: danbarberphoto-test - username: danbarberphoto production: adapter: postgresql host: localhost database: danbarberphoto - username: danbarberphoto - password: {put password here} pool: 5 timeout: 5000