From b0fb93454178b6ebc94d9fa3c697c8cc9de0aa6b Mon Sep 17 00:00:00 2001 From: mo khan Date: Fri, 19 Jul 2013 16:26:02 -0600 Subject: bring back the missing database.yml.example file. who deleted it? --- config/database.yml.example | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 config/database.yml.example diff --git a/config/database.yml.example b/config/database.yml.example new file mode 100644 index 0000000..e3b0ccf --- /dev/null +++ b/config/database.yml.example @@ -0,0 +1,29 @@ +development: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_development + host: localhost + pool: 5 + username: parley_app + password: postgres + +test: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_test + host: localhost + pool: 5 + username: parley_app + password: postgres + +production: + adapter: postgresql + encoding: unicode + min_messages: warning + database: parley_production + host: localhost + pool: 5 + username: parley_app + password: postgres -- cgit v1.2.3