2016-02-21 08:53:20 +11:00
|
|
|
default: &default
|
|
|
|
adapter: postgresql
|
2017-01-11 08:01:13 +11:00
|
|
|
pool: <%= ENV["DB_POOL"] || ENV['MAX_THREADS'] || 5 %>
|
2016-02-21 08:53:20 +11:00
|
|
|
timeout: 5000
|
2022-12-07 10:39:36 +11:00
|
|
|
connect_timeout: 15
|
2016-03-15 07:39:39 +11:00
|
|
|
encoding: unicode
|
2019-03-09 00:36:28 +11:00
|
|
|
sslmode: <%= ENV['DB_SSLMODE'] || "prefer" %>
|
2023-03-05 11:52:42 +11:00
|
|
|
application_name: ''
|
2016-02-21 08:53:20 +11:00
|
|
|
|
|
|
|
development:
|
2023-07-17 16:26:52 +10: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-04 00:17:09 +10:00
|
|
|
replica:
|
2023-07-17 16:26:52 +10: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-21 08:53:20 +11: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 16:26:52 +10: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-04 00:17:09 +10:00
|
|
|
replica:
|
2023-07-17 16:26:52 +10: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-21 08:53:20 +11:00
|
|
|
|
|
|
|
production:
|
2023-07-09 03:45:36 +10: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-04 00:17:09 +10:00
|
|
|
replica:
|
2023-07-09 03:45:36 +10:00
|
|
|
<<: *default
|
2023-08-08 21:59:40 +10: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-09 03:45:36 +10:00
|
|
|
prepared_statements: <%= ENV['PREPARED_STATEMENTS'] || 'true' %>
|
|
|
|
replica: true
|