De-scope - remove swagger docs and http proxy

HTTP proxy was becoming annoying to maintain, and gRPC is easier to use anyway

swagger docs are just part of the fallout
This commit is contained in:
Marc Di Luzio 2020-07-10 00:12:35 +01:00
parent bffe539d77
commit 7d780d05bd
4 changed files with 3 additions and 38 deletions

View file

@ -8,7 +8,6 @@ RUN go mod download
# Build the executables
RUN go build -o rove -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=$(git describe --always --long --dirty --tags)'" cmd/rove/main.go
RUN go build -o rove-server -ldflags="-X 'github.com/mdiluz/rove/pkg/version.Version=$(git describe --always --long --dirty --tags)'" cmd/rove-server/main.go
RUN go build -o rove-server-rest-proxy cmd/rove-server-rest-proxy/main.go
CMD [ "./rove-server" ]