File tree Expand file tree Collapse file tree 2 files changed +53
-1
lines changed Expand file tree Collapse file tree 2 files changed +53
-1
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,14 @@ production:
29
29
# port: 8600
30
30
# record: secondary.postgresql.service.consul
31
31
# interval: 300
32
+ ci:
33
+ adapter: postgresql
34
+ encoding: unicode
35
+ database: gitlabhq_production
36
+ database_tasks: false
37
+ username: git
38
+ password: "secure password"
39
+ host: localhost
32
40
# geo:
33
41
# adapter: postgresql
34
42
# encoding: unicode
@@ -50,6 +58,16 @@ development:
50
58
host: localhost
51
59
variables:
52
60
statement_timeout: 15s
61
+ ci:
62
+ adapter: postgresql
63
+ encoding: unicode
64
+ database: gitlabhq_development
65
+ database_tasks: false
66
+ username: postgres
67
+ password: "secure password"
68
+ host: localhost
69
+ variables:
70
+ statement_timeout: 15s
53
71
# geo:
54
72
# adapter: postgresql
55
73
# encoding: unicode
@@ -69,6 +87,14 @@ staging:
69
87
username: git
70
88
password: "secure password"
71
89
host: localhost
90
+ ci:
91
+ adapter: postgresql
92
+ encoding: unicode
93
+ database: gitlabhq_staging
94
+ database_tasks: false
95
+ username: git
96
+ password: "secure password"
97
+ host: localhost
72
98
# geo:
73
99
# adapter: postgresql
74
100
# encoding: unicode
@@ -91,10 +117,28 @@ test: &test
91
117
prepared_statements: false
92
118
variables:
93
119
statement_timeout: 15s
120
+ ci:
121
+ adapter: postgresql
122
+ encoding: unicode
123
+ database: gitlabhq_test
124
+ database_tasks: false
125
+ username: postgres
126
+ password:
127
+ host: localhost
128
+ prepared_statements: false
129
+ variables:
130
+ statement_timeout: 15s
94
131
# geo:
95
132
# adapter: postgresql
96
133
# encoding: unicode
97
134
# database: gitlabhq_geo_test
98
135
# username: postgres
99
136
# password:
100
137
# host: localhost
138
+ # embedding:
139
+ # adapter: postgresql
140
+ # encoding: unicode
141
+ # database: gitlabhq_embedding_test
142
+ # username: postgres
143
+ # password:
144
+ # host: localhost
Original file line number Diff line number Diff line change @@ -12,4 +12,12 @@ production:
12
12
password : " {{DB_PASS}}"
13
13
pool : {{DB_POOL}}
14
14
prepared_statements : {{DB_PREPARED_STATEMENTS}}
15
-
15
+ ci :
16
+ adapter : postgresql
17
+ encoding : {{DB_ENCODING}}
18
+ database : {{DB_NAME}}
19
+ database_tasks : false
20
+ host : {{DB_HOST}}
21
+ port : {{DB_PORT}}
22
+ username : {{DB_USER}}
23
+ password : " {{DB_PASS}}"
You can’t perform that action at this time.
0 commit comments