mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
41 lines
783 B
Plaintext
41 lines
783 B
Plaintext
# MySQL (default setup).
|
|
|
|
production:
|
|
adapter: mysql2
|
|
database: chiliproject
|
|
host: localhost
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
|
|
development:
|
|
adapter: mysql2
|
|
database: chiliproject_development
|
|
host: localhost
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
|
|
# Warning: The database defined as "test" will be erased and
|
|
# re-generated from your development database when you run "rake".
|
|
# Do not set this db to the same as development or production.
|
|
test:
|
|
adapter: mysql2
|
|
database: chiliproject_test
|
|
host: localhost
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
|
|
test_pgsql:
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
database: chiliproject_test
|
|
pool: 5
|
|
username: chiliproject
|
|
password:
|
|
|
|
test_sqlite3:
|
|
adapter: sqlite3
|
|
database: db/test.sqlite3
|