Skip to content

Commit e399c18

Browse files
committed
fix: quote production db config vars
1 parent d105de5 commit e399c18

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

config/database.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ test:
4949
#
5050
production:
5151
<<: *default
52-
database: <%= ENV['DATABASE_NAME'] %>
52+
database: "<%= ENV['DATABASE_NAME'] %>"
5353
adapter: postgresql
54-
host: <%= ENV['DATABASE_HOST'] %>
55-
username: <%= ENV['DATABASE_USERNAME'] %>
56-
password: <%= ENV['DATABASE_PASSWORD'] %>
54+
host: "<%= ENV['DATABASE_HOST'] %>"
55+
username: "<%= ENV['DATABASE_USERNAME'] %>"
56+
password: "<%= ENV['DATABASE_PASSWORD'] %>"

0 commit comments

Comments
 (0)