9 lines
250 B
Ruby
9 lines
250 B
Ruby
# This file is used by Rack-based servers to start the application.
|
|
|
|
require ::File.expand_path('../config/environment', __FILE__)
|
|
if Rails.env.production?
|
|
run Rack::URLMap.new("/backoffice" => Rails::application)
|
|
else
|
|
run Rails.application
|
|
end
|