gitlabhq/config/database.yml.example

40 lines
802 B
Plaintext
Raw Normal View History

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