2013-02-13 00:18:59 +08:00
|
|
|
development:
|
2015-10-19 11:02:22 +08:00
|
|
|
prepared_statements: false
|
2013-02-13 00:18:59 +08:00
|
|
|
adapter: postgresql
|
2017-09-05 00:14:34 +08:00
|
|
|
database: <%= ENV['DISCOURSE_DEV_DB'] || 'discourse_development' %>
|
2013-03-02 01:45:25 +08:00
|
|
|
min_messages: warning
|
2017-09-27 11:55:06 +08:00
|
|
|
pool: 5
|
2017-10-27 21:59:30 +08:00
|
|
|
checkout_timeout: <%= ENV['CHECKOUT_TIMEOUT'] || 5 %>
|
2013-02-13 00:18:59 +08:00
|
|
|
host_names:
|
2013-12-07 00:01:22 +08:00
|
|
|
### Don't include the port number here. Change the "port" site setting instead, at /admin/site_settings.
|
2013-08-02 04:24:55 +08:00
|
|
|
### If you change this setting you will need to
|
|
|
|
### - restart sidekiq if you change this setting
|
|
|
|
### - rebake all to posts using: `RAILS_ENV=production bundle exec rake posts:rebake`
|
2021-11-03 11:26:44 +08:00
|
|
|
- "<%= ENV['DISCOURSE_HOSTNAME'] || 'localhost' %>"
|
2021-04-14 23:34:28 +08:00
|
|
|
variables: <%= ENV.filter { |k,v| k.start_with? 'DISCOURSE_DB_VARIABLES_' }
|
|
|
|
.transform_keys { |k| k.slice(('DISCOURSE_DB_VARIABLES_'.length)..).downcase }
|
|
|
|
.to_json %>
|
2013-02-13 00:18:59 +08: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.
|
2019-12-31 11:07:44 +08:00
|
|
|
|
|
|
|
<%
|
2022-08-05 05:15:06 +08:00
|
|
|
test_db = ENV["RAILS_DB"]
|
2019-12-31 11:07:44 +08:00
|
|
|
if !test_db.present?
|
|
|
|
test_db = "discourse_test"
|
|
|
|
|
|
|
|
if num = ENV["TEST_ENV_NUMBER"]
|
|
|
|
num = num.presence || "1"
|
|
|
|
test_db += "_#{num}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
%>
|
|
|
|
|
2013-02-13 00:18:59 +08:00
|
|
|
test:
|
2016-03-30 02:41:13 +08:00
|
|
|
prepared_statements: false
|
2013-02-13 00:18:59 +08:00
|
|
|
adapter: postgresql
|
2019-12-31 11:07:44 +08:00
|
|
|
database: <%= test_db %>
|
2013-03-02 01:45:25 +08:00
|
|
|
min_messages: warning
|
2017-09-27 11:55:06 +08:00
|
|
|
pool: 5
|
2013-02-13 00:18:59 +08:00
|
|
|
host_names:
|
|
|
|
- test.localhost
|
|
|
|
|
2014-08-14 12:46:57 +08:00
|
|
|
# profile db is used for benchmarking using the script/bench.rb script
|
2013-03-11 08:21:56 +08:00
|
|
|
profile:
|
2015-10-19 11:02:22 +08:00
|
|
|
prepared_statements: false
|
2013-03-11 08:21:56 +08:00
|
|
|
adapter: postgresql
|
2013-08-05 05:22:00 +08:00
|
|
|
database: discourse_profile
|
2013-03-11 08:21:56 +08:00
|
|
|
min_messages: warning
|
|
|
|
pool: 5
|
|
|
|
host_names:
|
|
|
|
- "localhost"
|
2014-01-14 13:59:55 +08:00
|
|
|
# You may be surprised production is not here, it is sourced from application.rb using a monkey patch
|
|
|
|
# This is done for 2 reasons
|
|
|
|
#
|
|
|
|
# 1. we need to support blank settings correctly and rendering nothing in yaml/erb is a PITA
|
|
|
|
# 2. why go from object -> yaml -> object, pointless
|