OSDN Git Service

Count owned projects, not just personal
[wvm/gitlab.git] / config / database.yml.mysql
1 #
2 # PRODUCTION
3 #
4 production:
5   adapter: mysql2
6   encoding: utf8
7   reconnect: false
8   database: gitlabhq_production
9   pool: 5
10   username: root
11   password: "secure password"
12   # host: localhost
13   # socket: /tmp/mysql.sock
14
15 #
16 # Development specific
17 #
18 development:
19   adapter: mysql2
20   encoding: utf8
21   reconnect: false
22   database: gitlabhq_development
23   pool: 5
24   username: root
25   password: "secure password"
26   # socket: /tmp/mysql.sock
27
28 # Warning: The database defined as "test" will be erased and
29 # re-generated from your development database when you run "rake".
30 # Do not set this db to the same as development or production.
31 test: &test
32   adapter: mysql2
33   encoding: utf8
34   reconnect: false
35   database: gitlabhq_test
36   pool: 5
37   username: root
38   password:
39   # socket: /tmp/mysql.sock