Dave Brophy
Dave Brophy
OK the redirect from `http://localhost:8081/` is expected. The root of `compile.jsgo.io` does a redirect to the Github repo. If you add a path to the URL - e.g. `http://localhost:8081/foo.bar/baz` it...
Aah ok you might need to do a `go get -u github.com/dave/play` - see if that fixes it...
Oh, no you'll probably need modules turned off... Jsgo was created before modules and I haven't updated it to support them yet.
Great! I'll add a note to the instructions about this.
I've been meaning to write some documentation for setting it up locally... a docker container would be a great idea. I'll see what I can do in the next few...
I made some instructions on how to get it running locally - can you run through them and see if there's any problems? https://github.com/dave/jsgo/blob/master/LOCAL.md
p.s. Setting this up as a docker container won't be trivial for two reasons: 1) Instead of asking the internet for git repos it uses files in your GOPATH, so...
Hey Rosco, to get it to fetch git repos in local mode should be very simple... Take a look at: https://github.com/dave/jsgo/blob/master/server/server.go ... we just need to change where it injects...
Parsing go test files shouldn't be too difficult to add, but I never implemented it for the jsgo ecosystem because it's not really needed.
No, there's no more documentation above what's in the [readme](https://github.com/dave/jsgo).