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-15 13:02:11 +08:00
|
|
|
pool: 10
|
2013-02-13 00:18:59 +08:00
|
|
|
timeout: 5000
|
|
|
|
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`
|
2013-02-13 00:18:59 +08:00
|
|
|
- "localhost"
|
|
|
|
|
|
|
|
# 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:
|
2016-03-30 02:41:13 +08:00
|
|
|
prepared_statements: false
|
2013-02-13 00:18:59 +08:00
|
|
|
adapter: postgresql
|
2017-08-07 21:05:13 +08:00
|
|
|
database: discourse_test<%= ENV['MULTISITE'] ? "_#{ENV['MULTISITE']}" : '' %>
|
2013-03-02 01:45:25 +08:00
|
|
|
min_messages: warning
|
2017-09-26 17:52:16 +08:00
|
|
|
pool: 10
|
2013-02-13 00:18:59 +08:00
|
|
|
timeout: 5000
|
|
|
|
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
|
|
|
|
timeout: 5000
|
|
|
|
host_names:
|
|
|
|
- "localhost"
|
2013-12-18 13:46:37 +08:00
|
|
|
|
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
|