File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 10
10
test :
11
11
runs-on : ubuntu-latest
12
12
env :
13
+ DATABASE_HOST : localhost
14
+ DATABASE_USER : postgres
15
+ DATABASE_PASSWORD : password
16
+ DATABASE_PORT : 5432
13
17
TZ : Asia/Tokyo
14
18
15
19
SCRIVITO_PASSWORD : testpassword
Original file line number Diff line number Diff line change @@ -20,10 +20,10 @@ default: &default
20
20
# For details on connection pooling, see Rails configuration guide
21
21
# http://guides.rubyonrails.org/configuring.html#database-pooling
22
22
pool : <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
23
- username : <%= ENV.fetch('DATABASE_USER') { 'postgres ' } %>
24
- password : <%= ENV.fetch('DATABASE_PASSWORD') { 'password ' } %>
25
- host : <%= ENV.fetch('DATABASE_HOST') { 'localhost ' } %>
26
- port : <%= ENV.fetch('DATABASE_PORT') { '5432 ' } %>
23
+ username : <%= ENV.fetch('DATABASE_USER') { '' } %>
24
+ password : <%= ENV.fetch('DATABASE_PASSWORD') { '' } %>
25
+ host : <%= ENV.fetch('DATABASE_HOST') { '' } %>
26
+ port : <%= ENV.fetch('DATABASE_PORT') { '' } %>
27
27
28
28
development :
29
29
<< : *default
You can’t perform that action at this time.
0 commit comments