Skip to content

Instantly share code, notes, and snippets.

@jelder
Forked from vangberg/app.rb
Created September 6, 2012 21:40
Show Gist options
  • Save jelder/3660560 to your computer and use it in GitHub Desktop.
Save jelder/3660560 to your computer and use it in GitHub Desktop.
minimal sinatra rackup
require 'sinatra'
set :public_folder, Proc.new { File.dirname(__FILE__) }
get '/' do
File.read("index.html")
end
$:.push File.dirname(__FILE__)
require 'app'
run Sinatra::Application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment