logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: 436ce03772c8c87a215cdcd88020edfb8c241d38
parent: d821aba002002f79385abd7f052f68c383d5cd0c
Author: amazedkoumei <amazed.koumei@gmail.com>
Date:   Mon, 26 Jun 2017 06:29:22 +0900

fix unnecessary  variable (#3947)


Diffstat:

Mconfig/database.yml8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/config/database.yml b/config/database.yml @@ -18,10 +18,10 @@ development: test: <<: *default database: mastodon_test<%= ENV['TEST_ENV_NUMBER'] %> - username: <%= ENV['TEST_DB_USER'] %> - password: <%= ENV['TEST_DB_PASS'] %> - host: <%= ENV['TEST_DB_HOST'] %> - port: <%= ENV['TEST_DB_PORT'] %> + username: <%= ENV['DB_USER'] %> + password: <%= ENV['DB_PASS'] %> + host: <%= ENV['DB_HOST'] %> + port: <%= ENV['DB_PORT'] %> production: <<: *default