summaryrefslogtreecommitdiff
path: root/config.ru
blob: 68e288d9184ef54ce23ec211f6b7b131d1fe28db (plain)
1
2
3
4
5
6
7
SERVICE="algorithm"
require 'bundler'
Bundler.require
require './application.rb'
map "/algorithm" do
  run OpenTox::Application
end