canvas-lms/config.ru

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
260 B
Plaintext
Raw Normal View History

# frozen_string_literal: true
# This file is used by Rack-based servers to start the application.
require File.expand_path("config/environment", __dir__)
if defined?(CanvasRails)
run CanvasRails::Application
else
run ActionController::Dispatcher.new
end