You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hector Correa edited this page Jan 2, 2024
·
1 revision
Update the IP address and run it
require "sinatra"
set :port, 80
set :bind, 'xx.yy.zz.aa'
disable :strict_paths
get("/") do
html = "<h1>Welcome to your first web app</h1>"
html += "<p>You are on your way to beat Google :)</p>"
return html
end