2016-02-20 21:53:20 +00:00
|
|
|
default: &default
|
|
|
|
adapter: postgresql
|
2023-11-08 13:15:43 +00:00
|
|
|
pool: <%= ENV["DB_POOL"] || (if Sidekiq.server? then Sidekiq[:concurrency] else ENV['MAX_THREADS'] end) || 5 %>
|
2016-02-20 21:53:20 +00:00
|
|
|
timeout: 5000
|
2022-12-06 23:39:36 +00:00
|
|
|
connect_timeout: 15
|
2016-03-14 20:39:39 +00:00
|
|
|
encoding: unicode
|
2019-03-08 13:36:28 +00:00
|
|
|
sslmode: <%= ENV['DB_SSLMODE'] || "prefer" %>
|
2023-03-05 00:52:42 +00:00
|
|
|
application_name: ''
|
2016-02-20 21:53:20 +00:00
|
|
|
|
|
|
|
development:
|
2023-07-17 06:26:52 +00:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_development' %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
2023-08-03 14:17:09 +00:00
|
|
|
replica:
|
2023-07-17 06:26:52 +00:00
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_development' %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
replica: true
|
2016-02-20 21:53:20 +00:00
|
|
|
|
|
|
|
# Warning: The database defined as "test" will be erased and
|
|
|
|
# re-generated from your development database when you run "rake".
|
|
|
|
# Do not set this db to the same as development or production.
|
|
|
|
test:
|
2023-07-17 06:26:52 +00:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
2023-08-03 14:17:09 +00:00
|
|
|
replica:
|
2023-07-17 06:26:52 +00:00
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon' %>_test<%= ENV['TEST_ENV_NUMBER'] %>
|
|
|
|
username: <%= ENV['DB_USER'] %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] %>
|
|
|
|
port: <%= ENV['DB_PORT'] %>
|
|
|
|
replica: true
|
2016-02-20 21:53:20 +00:00
|
|
|
|
|
|
|
production:
|
2023-07-08 17:45:36 +00:00
|
|
|
primary:
|
|
|
|
<<: *default
|
|
|
|
database: <%= ENV['DB_NAME'] || 'mastodon_production' %>
|
|
|
|
username: <%= ENV['DB_USER'] || 'mastodon' %>
|
|
|
|
password: <%= (ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['DB_HOST'] || 'localhost' %>
|
|
|
|
port: <%= ENV['DB_PORT'] || 5432 %>
|
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
2023-08-03 14:17:09 +00:00
|
|
|
replica:
|
2023-07-08 17:45:36 +00:00
|
|
|
<<: *default
|
2023-08-08 11:59:40 +00:00
|
|
|
database: <%= ENV['REPLICA_DB_NAME'] ||ENV['DB_NAME'] || 'mastodon_production' %>
|
|
|
|
username: <%= ENV['REPLICA_DB_USER'] ||ENV['DB_USER'] || 'mastodon' %>
|
|
|
|
password: <%= (ENV['REPLICA_DB_PASS'] || ENV['DB_PASS'] || '').to_json %>
|
|
|
|
host: <%= ENV['REPLICA_DB_HOST'] ||ENV['DB_HOST'] || 'localhost' %>
|
|
|
|
port: <%= ENV['REPLICA_DB_PORT'] ||ENV['DB_PORT'] || 5432 %>
|
2023-07-08 17:45:36 +00:00
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
|
|
|
replica: true
|