summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2013-07-19 16:26:02 -0600
committermo khan <mo@mokhan.ca>2013-07-19 16:26:02 -0600
commitb0fb93454178b6ebc94d9fa3c697c8cc9de0aa6b (patch)
treef796ea26fafc081f5f1353875ff60dcffabd5a88
parent9a1c60ed599ee7f15d91d530b0008f3d0a98f0bb (diff)
bring back the missing database.yml.example file. who deleted it?
-rw-r--r--config/database.yml.example29
1 files changed, 29 insertions, 0 deletions
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