| 1 | # PostgreSQL versions 7.4 - 8.1 |
|---|
| 2 | # |
|---|
| 3 | # Get the C bindings: |
|---|
| 4 | # gem install postgres |
|---|
| 5 | # or use the pure-Ruby bindings on Windows: |
|---|
| 6 | # gem install postgres-pr |
|---|
| 7 | development: |
|---|
| 8 | adapter: postgresql |
|---|
| 9 | database: rhianolethe_development |
|---|
| 10 | username: yugui |
|---|
| 11 | password: |
|---|
| 12 | |
|---|
| 13 | # Connect on a TCP socket. Omitted by default since the client uses a |
|---|
| 14 | # domain socket that doesn't need configuration. Windows does not have |
|---|
| 15 | # domain sockets, so uncomment these lines. |
|---|
| 16 | #host: localhost |
|---|
| 17 | #port: 5432 |
|---|
| 18 | |
|---|
| 19 | # Schema search path. The server defaults to $user,public |
|---|
| 20 | #schema_search_path: myapp,sharedapp,public |
|---|
| 21 | |
|---|
| 22 | # Character set encoding. The server defaults to sql_ascii. |
|---|
| 23 | #encoding: UTF8 |
|---|
| 24 | |
|---|
| 25 | # Minimum log levels, in increasing order: |
|---|
| 26 | # debug5, debug4, debug3, debug2, debug1, |
|---|
| 27 | # info, notice, warning, error, log, fatal, or panic |
|---|
| 28 | # The server defaults to notice. |
|---|
| 29 | #min_messages: warning |
|---|
| 30 | |
|---|
| 31 | # Warning: The database defined as 'test' will be erased and |
|---|
| 32 | # re-generated from your development database when you run 'rake'. |
|---|
| 33 | # Do not set this db to the same as development or production. |
|---|
| 34 | test: |
|---|
| 35 | adapter: postgresql |
|---|
| 36 | database: rhianolethe_test |
|---|
| 37 | username: yugui |
|---|
| 38 | password: |
|---|
| 39 | |
|---|
| 40 | production: |
|---|
| 41 | adapter: postgresql |
|---|
| 42 | database: rhianolethe_production |
|---|
| 43 | username: rhianolethe |
|---|
| 44 | password: |
|---|