-
-
Save stoplion/a9d83bfddfa0eabeb2d9 to your computer and use it in GitHub Desktop.
A reminder to myself and anyone wanting to use Sinatra on Nitrous.IO
This file contains 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' | |
# Set port for compatability with Nitrous.IO | |
configure :development do | |
set :bind, '0.0.0.0' | |
set :port, 3000 # Not really needed, but works well with the "Preview" menu option | |
end | |
get '/' do | |
"Sinatra on Nitrous.IO" | |
end | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment