main
1# createuser confection_app --superuser --pwprompt --
2# rake db:create:all
3
4development:
5 adapter: postgresql
6 encoding: unicode
7 min_messages: warning
8 database: confection_development
9 host: localhost
10 pool: 5
11 username: confection_app
12 password: postgres
13
14test:
15 adapter: postgresql
16 encoding: unicode
17 min_messages: warning
18 database: confection_test
19 host: localhost
20 pool: 5
21 username: confection_app
22 password: postgres
23
24production:
25 adapter: postgresql
26 encoding: unicode
27 min_messages: warning
28 database: confection_development
29 host: localhost
30 pool: 5
31 username: confection_app
32 password: postgres