mirror of
https://github.com/discourse/discourse.git
synced 2024-11-22 22:05:48 +08:00
f52111f787
Usage: Discourse.running_in_rack? to tell if rack was booted
9 lines
273 B
Ruby
9 lines
273 B
Ruby
# This file is used by Rack-based servers to start the application.
|
|
ENV["DISCOURSE_RUNNING_IN_RACK"] = "1"
|
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
|
|
|
map ActionController::Base.config.try(:relative_url_root) || "/" do
|
|
run Discourse::Application
|
|
end
|