commit: 87efa3872193084468c25f410f5cf9189c0b976e
parent: f7301bd5b94d3033b5dbb9ff65dd1ed8ac825ce5
Author: amazedkoumei <amazed.koumei@gmail.com>
Date: Mon, 26 Jun 2017 01:13:31 +0900
more free pgconfig by .env (#3909)
* more free pgconfig for streaming by .env
* fix wrong default values
* database.yml read ENV as same as streaming server
Diffstat:
2 files changed, 13 insertions(+), 1 deletion(-)
diff --git a/config/database.yml b/config/database.yml
@@ -7,6 +7,10 @@ default: &default
development:
<<: *default
database: mastodon_development
+ username: <%= ENV['DB_USER'] %>
+ password: <%= ENV['DB_PASS'] %>
+ host: <%= ENV['DB_HOST'] %>
+ port: <%= ENV['DB_PORT'] %>
# Warning: The database defined as "test" will be erased and
# re-generated from your development database when you run "rake".
@@ -14,6 +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'] %>
production:
<<: *default
diff --git a/streaming/index.js b/streaming/index.js
@@ -78,7 +78,11 @@ const startWorker = (workerId) => {
const pgConfigs = {
development: {
- database: 'mastodon_development',
+ user: process.env.DB_USER || pg.defaults.user,
+ password: process.env.DB_PASS || pg.defaults.password,
+ database: process.env.DB_NAME || 'mastodon_development',
+ host: process.env.DB_HOST || pg.defaults.host,
+ port: process.env.DB_PORT || pg.defaults.port,
max: 10,
},