gitlabhq/config/database.yml.example

33 lines
732 B
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
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:
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
2011-10-08 23:36:38 +02:00
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"
# socket: /tmp/mysql.sock