8 lines
208 B
Plaintext
8 lines
208 B
Plaintext
|
# run with: thin --rackup config.ru -p 4567 start
|
||
|
|
||
|
require 'app2'
|
||
|
|
||
|
use Rack::ShowExceptions
|
||
|
use Rack::Static, :urls => ["/stylesheets", "/javascripts", "/images"], :root => "public"
|
||
|
run Sinatra::Application
|