##// END OF EJS Templates
Do not mass create API keys for existing users....
Do not mass create API keys for existing users. They will be created on the fly if needed, just like for new users. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@3221 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r2794:94d34887cca9
r3107:edab0f0cbb85
Show More
database.yml.example
42 lines | 818 B | text/plain | TextLexer
/ config / database.yml.example
Jean-Philippe Lang
Initial commit...
r2 # 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
Jean-Philippe Lang
v0.2.0...
r5
production:
adapter: mysql
database: redmine
host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Jean-Philippe Lang
v0.2.0...
r5
Jean-Philippe Lang
Initial commit...
r2 development:
adapter: mysql
Jean-Philippe Lang
Native eol property set on config/*...
r761 database: redmine_development
Jean-Philippe Lang
Initial commit...
r2 host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Jean-Philippe Lang
Native eol property set on config/*...
r761
Jean-Philippe Lang
Initial commit...
r2 test:
adapter: mysql
Jean-Philippe Lang
Native eol property set on config/*...
r761 database: redmine_test
Jean-Philippe Lang
Initial commit...
r2 host: localhost
username: root
password:
Jean-Philippe Lang
Encoding set to utf8 in example database.yml (#1506)....
r1569 encoding: utf8
Jean-Philippe Lang
v0.2.0...
r5
test_pgsql:
adapter: postgresql
Jean-Philippe Lang
Test environments cleanup....
r1070 database: redmine_test
Jean-Philippe Lang
v0.2.0...
r5 host: localhost
username: postgres
password: "postgres"
Jean-Philippe Lang
Test environments cleanup....
r1070 test_sqlite3:
adapter: sqlite3
Jean-Philippe Lang
Change deprecated dbfile parameter....
r2794 database: db/test.db