|
|
|
@ -15,7 +15,7 @@ development:
|
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
|
read:
|
|
|
|
|
replica:
|
|
|
|
|
<<: *default
|
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_development' %>
|
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
@ -35,7 +35,7 @@ test:
|
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
|
read:
|
|
|
|
|
replica:
|
|
|
|
|
<<: *default
|
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %>
|
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
@ -53,7 +53,7 @@ production:
|
|
|
|
|
host: <%= ENV['DB_HOST'] || 'localhost' %>
|
|
|
|
|
port: <%= ENV['DB_PORT'] || 5432 %>
|
|
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
|
|
|
|
read:
|
|
|
|
|
replica:
|
|
|
|
|
<<: *default
|
|
|
|
|
database: <%= ENV['DB_REPLICA_NAME'] ||ENV['DB_NAME'] || 'mastodon_production' %>
|
|
|
|
|
username: <%= ENV['DB_REPLICA_USER'] ||ENV['DB_USER'] || 'mastodon' %>
|
|
|
|
|