source: ruby/trunk/config/database.yml@ 415

Last change on this file since 415 was 415, checked in by KOBAYASHI, Shinji, 14 years ago

developing around terminology

File size: 559 bytes
Line 
1# SQLite version 3.x
2# gem install sqlite3-ruby (not necessary on OS X Leopard)
3development:
4 adapter: sqlite3
5 database: db/development.sqlite3
6 timeout: 5000
7
8# Warning: The database defined as "test" will be erased and
9# re-generated from your development database when you run "rake".
10# Do not set this db to the same as development or production.
11test:
12 adapter: sqlite3
13 database: db/test.sqlite3
14 timeout: 5000
15
16production:
17 adapter: postgresql
18 host: localhost
19 database: openehr
20 username: openehr
21 password: archetype
22 encoding: utf-8
Note: See TracBrowser for help on using the repository browser.