Skip to content

Instantly share code, notes, and snippets.

@mprokopov
Last active May 14, 2020 15:56
Show Gist options
  • Select an option

  • Save mprokopov/f64bb6be7cced44164de94a61595cd99 to your computer and use it in GitHub Desktop.

Select an option

Save mprokopov/f64bb6be7cced44164de94a61595cd99 to your computer and use it in GitHub Desktop.
simple ruby webserver
require 'sinatra'
require 'json'
set :bind, '0.0.0.0'
set :port, 8080
get '/' do
{ name: 'Hello',
description: 'World',
Url: request.url }.to_json
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment