A web application used to analyze other web applications written in Go. It generates LARs (long-ass reports) of tests performed.
pprof handlers available.go get github.com/adjust/go-wrkgo with Choco to skip this step.Install with :
$ go get github.com/cheikhshift/cleo
Run the following command to launch application :
$ cleo
Your Go web application should retrieve the port number to listen on from env. variable $PORT.
Example
...
port := ":defaultport"
if envport := os.ExpandEnv("$PORT"); envport != "" {
port = fmt.Sprintf(":%s", envport)
}
...
log.Fatal(http.ListenAndServe(port, nil) )
