kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
952 B
52 lines
952 B
19 years ago
|
# MySQL (default setup). Versions 4.1 and 5.0 are recommended.
|
||
|
#
|
||
|
# Get the fast C bindings:
|
||
|
# gem install mysql
|
||
|
# (on OS X: gem install mysql -- --include=/usr/local/lib)
|
||
|
# And be sure to use new-style password hashing:
|
||
|
# http://dev.mysql.com/doc/refman/5.0/en/old-client.html
|
||
19 years ago
|
|
||
|
production:
|
||
|
adapter: mysql
|
||
|
database: redmine
|
||
|
host: localhost
|
||
|
username: root
|
||
|
password:
|
||
|
|
||
19 years ago
|
development:
|
||
|
adapter: mysql
|
||
18 years ago
|
database: redmine_development
|
||
19 years ago
|
host: localhost
|
||
|
username: root
|
||
|
password:
|
||
|
|
||
|
test:
|
||
|
adapter: mysql
|
||
|
database: redmine_test
|
||
|
host: localhost
|
||
|
username: root
|
||
|
password:
|
||
19 years ago
|
|
||
|
test_pgsql:
|
||
|
adapter: postgresql
|
||
|
database: redmine
|
||
|
host: localhost
|
||
|
username: postgres
|
||
|
password: "postgres"
|
||
|
|
||
|
test_oracle:
|
||
|
adapter: oci
|
||
|
host: 192.168.0.14
|
||
|
username: rails_test
|
||
|
password: "rails"
|
||
|
|
||
|
test_sqlserver:
|
||
|
adapter: sqlserver
|
||
|
host: localhost,1157
|
||
|
database: redmine_test
|
||
|
|
||
19 years ago
|
demo:
|
||
|
adapter: sqlite3
|
||
|
dbfile: db/redmine_demo.db
|
||
|
|