Skip to content

Commit

Permalink
Add sample database config file
Browse files Browse the repository at this point in the history
  • Loading branch information
kytrinyx committed Sep 2, 2012
1 parent f4b40af commit 6110c36
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -8,3 +8,4 @@ coverage/
.approvals
*.received.txt
config/site.rb
config/database.yml
23 changes: 23 additions & 0 deletions config/database-example.yml
@@ -0,0 +1,23 @@
---
common: &common
adapter: postgresql
encoding: unicode
host: localhost
pool: 5
username: grove

production:
database: grove_production
password:
<<: *common

development:
database: grove_development
password:
<<: *common

test:
database: grove_test
password:
min_messages: WARNING
<<: *common

0 comments on commit 6110c36

Please sign in to comment.