1#
2# PRODUCTION
3#
4production:
5  adapter: postgresql
6  encoding: unicode
7  database: gitlabhq_geo_production
8  username: git
9  password: "secure password"
10  host: localhost
11
12#
13# Development specific
14#
15development:
16  adapter: postgresql
17  encoding: unicode
18  database: gitlabhq_geo_development
19  username: postgres
20  password: "secure password"
21  host: localhost
22
23#
24# Staging specific
25#
26staging:
27  adapter: postgresql
28  encoding: unicode
29  database: gitlabhq_geo_staging
30  username: git
31  password: "secure password"
32  host: localhost
33
34# Warning: The database defined as "test" will be erased and
35# re-generated from your development database when you run "rake".
36# Do not set this db to the same as development or production.
37test: &test
38  adapter: postgresql
39  encoding: unicode
40  database: gitlabhq_geo_test
41  username: postgres
42  password:
43  host: localhost
44