1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
development:
  sequel: &default
    adapter: mysql
    database: sample_development
    username: teh_user
    password: secrets
    host: localhost
    socket: /tmp/mysql.sock

test:
  sequel:
    << *default

production:
  sequel:
    << *default