]> cat aescling's git repositories - mastodon.git/commitdiff
more free pgconfig by .env (#3909)
authoramazedkoumei <amazed.koumei@gmail.com>
Sun, 25 Jun 2017 16:13:31 +0000 (01:13 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Sun, 25 Jun 2017 16:13:31 +0000 (18:13 +0200)
* more free pgconfig for streaming by .env

* fix wrong default values

* database.yml read ENV as same as streaming server

config/database.yml
streaming/index.js

index 39393e93ad6b303200d48a00c1f3426f4d2a3663..079ea7b4a9f44c81c50d283013d16a1bd31247d3 100644 (file)
@@ -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
index 156e1d4bc5e56c574537667560fc6f7407602e5d..701cb2f55750307bac973a9593917782106b8481 100644 (file)
@@ -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,
     },