sausheong/polyglot

polyglot just hangs

Closed this issue · 4 comments

$ ./polyglot

and nothing else happens. Maybe I need to hit a route on port 8080?

Yea, I needed to hit a route on port 8080, but now I'm confused at how to hit the go responder:

$ curl http://localhost:8080/go/hello
404 page not found
$ curl http://localhost:8080/_/go/hello
Not Found

I got the ruby one figured out:

$ curl http://localhost:8080/_/ruby/haml
<html>
  <head>
    <title>Ruby and Haml example</title>
  </head>
  <body>
    <h1>This is the Haml template example</h1>
    <div>
      Hello, world!
    </div>
  </body>
</html>

The go responder is not complete yet, sorry.

I have completed the Go responder.