BigW Consortium Gitlab

database.yml.mysql 871 Bytes
Newer Older
Dmitriy Zaporozhets committed
1 2 3 4 5 6
#
# PRODUCTION
#
production:
  adapter: mysql2
  encoding: utf8
7
  collation: utf8_general_ci
Dmitriy Zaporozhets committed
8 9
  reconnect: false
  database: gitlabhq_production
10
  pool: 10
11
  username: git
Dmitriy Zaporozhets committed
12
  password: "secure password"
13
  # host: localhost
Dmitriy Zaporozhets committed
14 15 16
  # socket: /tmp/mysql.sock

#
17
# Development specific
Dmitriy Zaporozhets committed
18
#
19 20 21
development:
  adapter: mysql2
  encoding: utf8
22
  collation: utf8_general_ci
23 24 25 26 27 28 29 30 31 32
  reconnect: false
  database: gitlabhq_development
  pool: 5
  username: root
  password: "secure password"
  # socket: /tmp/mysql.sock

# 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.
Dmitriy Zaporozhets committed
33
test: &test
34 35
  adapter: mysql2
  encoding: utf8
36
  collation: utf8_general_ci
37 38 39 40 41 42
  reconnect: false
  database: gitlabhq_test
  pool: 5
  username: root
  password:
  # socket: /tmp/mysql.sock