gitlab-org--gitlab-foss/config/database.yml.example

40 lines
802 B
Plaintext
Raw Normal View History

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