mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 02:50:00 +08:00
30990006a9
This reduces chances of errors where consumers of strings mutate inputs and reduces memory usage of the app. Test suite passes now, but there may be some stuff left, so we will run a few sites on a branch prior to merging
13 lines
475 B
Ruby
13 lines
475 B
Ruby
# frozen_string_literal: true
|
|
|
|
# Load the rails application
|
|
require File.expand_path('../application', __FILE__)
|
|
|
|
# Initialize the rails application
|
|
Discourse::Application.initialize!
|
|
|
|
# When in "dev" mode, ensure we won't be sending any emails
|
|
if Rails.env.development? && ActionMailer::Base.smtp_settings != { address: "localhost", port: 1025 }
|
|
fail "In development mode, you should be using mailcatcher otherwise you might end up sending thousands of digest emails"
|
|
end
|