mirror of
https://github.com/opf/openproject.git
synced 2026-06-14 03:30:14 +00:00
52 lines
1.1 KiB
Plaintext
52 lines
1.1 KiB
Plaintext
#-- copyright
|
|
# OpenProject is a project management system.
|
|
#
|
|
# Copyright (C) 2012-2013 the OpenProject Team
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License version 3.
|
|
#
|
|
# See doc/COPYRIGHT.rdoc for more details.
|
|
#++
|
|
|
|
# MySQL (default setup).
|
|
|
|
production:
|
|
adapter: mysql2
|
|
database: openproject
|
|
host: localhost
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
|
|
development:
|
|
adapter: mysql2
|
|
database: openproject_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: openproject_test
|
|
host: localhost
|
|
username: root
|
|
password:
|
|
encoding: utf8
|
|
|
|
test_pgsql:
|
|
adapter: postgresql
|
|
encoding: unicode
|
|
database: openproject_test
|
|
pool: 5
|
|
username: openproject
|
|
password:
|
|
|
|
#test_sqlite3:
|
|
#adapter: sqlite3
|
|
#database: db/test.sqlite3
|