Updating to reflect changes in DM 0.9.1
[merb_mart.git] / config / database.sample.yml
blob7c0a4ad41f7685513643c307913777233a07492f
1 ---
2 # This is a sample database file for the DataMapper ORM
3 development: &defaults
4   # These are the settings for repository :default
5   adapter:  postgres
6   database: sample_development
7   username: the_user
8   password: secrets
9   host:     localhost
11   # Add more repositories
12   # repositories:
13   #   repo1:
14   #     adapter:  postgresql
15   #     database: sample_development
16   #     username: the_user
17   #     password: secrets
18   #     host:     localhost
19   #   repo2:
20   #     ...
22 test:
23   <<:       *defaults
24   database: sample_test
26   # repositories:
27   #   repo1:
28   #     database: sample_development
30 production:
31   <<:       *defaults
32   database: sample_production
34   # repositories:
35   #   repo1:
36   #     database: sample_development