gitlabhq/config/database.yml.example

40 lines
802 B
Text
Raw Normal View History

#
# PRODUCTION
#
production:
2012-03-06 19:54:59 +02:00
adapter: mysql2
encoding: utf8
reconnect: false
database: gitlabhq_production
2011-10-09 00:36:38 +03:00
pool: 5
2012-03-06 19:54:59 +02:00
username: root
password: "secure password"
2012-09-26 23:36:55 -07:00
# host: localhost
2012-03-06 19:54:59 +02:00
# socket: /tmp/mysql.sock
2011-10-09 00:36:38 +03:00
#
2012-09-26 23:36:55 -07:00
# Development specific
#
development:
2012-03-06 19:54:59 +02:00
adapter: mysql2
encoding: utf8
reconnect: false
database: gitlabhq_development
2011-10-09 00:36:38 +03:00
pool: 5
2012-03-06 19:54:59 +02:00
username: root
password: "secure password"
# socket: /tmp/mysql.sock
2011-10-09 00:36:38 +03:00
# 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: &test
2012-03-06 19:54:59 +02:00
adapter: mysql2
encoding: utf8
reconnect: false
database: gitlabhq_test
2011-10-09 00:36:38 +03:00
pool: 5
2012-03-06 19:54:59 +02:00
username: root
password: "secure password"
# socket: /tmp/mysql.sock