aboutsummaryrefslogtreecommitdiffstats
path: root/config.ru
blob: aabaa3a9445a4db6f82a68fe4a64086d073f2b0b (plain)
1
2
3
4
5
6
7
8
9
10
require "rack"
require_relative "lib/poe/webapp"

use Rack::CommonLogger
if Poe.debug?
  use Rack::ShowExceptions
  use Rack::Lint
end

run Sinatra::Application