Skip to content

Instantly share code, notes, and snippets.

@timfel
Created February 22, 2012 17:35
Show Gist options
  • Select an option

  • Save timfel/1886224 to your computer and use it in GitHub Desktop.

Select an option

Save timfel/1886224 to your computer and use it in GitHub Desktop.
export PATH=/usr/bin:/bin
require 'rubygems'
require 'sinatra'
get '/' do
host = ENV['VMC_APP_HOST']
port = ENV['VMC_APP_PORT']
"<h1>XXXXX Hello from the Cloud! via: #{host}:#{port}</h1>"
end
get '/env' do
res = ''
ENV.each do |k, v|
res << "#{k}: #{v}<br/>"
end
res
end
@rkh

rkh commented Feb 23, 2012

Copy link
Copy Markdown

Dude, indentation.

Ok.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment