integresql icon indicating copy to clipboard operation
integresql copied to clipboard

404 for readme "install locally" URL

Open ksamuel opened this issue 3 years ago • 2 comments

README says to do:

go get github.com/allaboutapps/integresql/cmd/server

But:

$ http github.com/allaboutapps/integresql/cmd/server --check-status --follow
HTTP/1.1 404 Not Found

github.com/allaboutapps/integresql/tree/master/cmd/server does exist but:

$ go get -v github.com/allaboutapps/integresql/blob/master/cmd/server/  
github.com/allaboutapps/integresql (download)
package github.com/allaboutapps/integresql/blob/master/cmd/server: cannot find package "github.com/allaboutapps/integresql/blob/master/cmd/server" in any of:
	/usr/lib/go-1.13/src/github.com/allaboutapps/integresql/blob/master/cmd/server (from $GOROOT)
	/home/user/go/src/github.com/allaboutapps/integresql/blob/master/cmd/server (from $GOPATH) ```

ksamuel avatar Apr 27 '21 10:04 ksamuel

Hi,

this might be related to Go modules @v1.13, anything >v1.14 should be fine, just tried the following inside a golang:1.16.3 container:

$ go get github.com/allaboutapps/integresql/cmd/server
go: downloading github.com/allaboutapps/integresql v1.0.0
go get: added github.com/allaboutapps/integresql v1.0.0
$ go install github.com/allaboutapps/integresql/cmd/server # installs as `server` executable

We only use the allaboutapps/integresql docker image currently within allaboutapps/go-starter, so there might still be issues when installing IntegreSQL locally that we are unaware of yet.

majodev avatar Apr 28 '21 09:04 majodev

As I said, github.com/allaboutapps/integresql/cmd/server is a 404 for me. It's not related to go.

image

ksamuel avatar Apr 28 '21 09:04 ksamuel

Closed via https://github.com/allaboutapps/integresql/pull/16

majodev avatar Jan 30 '24 18:01 majodev