Last active
December 25, 2015 08:19
-
-
Save mark/6945449 to your computer and use it in GitHub Desktop.
Running a sinatra app from a shard...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'sinatra' | |
get '/hi' do | |
"Hello World, brought to you by a shard!" | |
end | |
Sinatra::Application.run! # Because we're not running this file directly... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment