comparison config/database.yml.example @ 13:33e8202c7e5d

Added example database.yml.
author Edho Arief <edho@myconan.net>
date Sun, 26 Aug 2012 12:06:48 -0700
parents
children 99d0adfd5453
comparison
equal deleted inserted replaced
12:f3adcff48173 13:33e8202c7e5d
1 # Copy this to "database.yml" and adjust the fields accordingly.
2 # Show work with any adapter.
3 login: &login
4 adapter: mysql2
5 username: zp
6 password: silica
7 host: 127.0.0.1
8
9 development:
10 database: zeropaste_dev
11 <<: *login
12
13 test:
14 database: zeropaste_test
15 <<: *login
16
17 production:
18 database: zeropaste
19 <<: *login