From 64ef0ac525eab2efa34dd309341492da51c7e65f Mon Sep 17 00:00:00 2001 From: thisisaaronland Date: Tue, 18 May 2021 13:15:10 -0700 Subject: [PATCH] formatting and notes --- Makefile | 2 +- README.md | 10 ---------- go.mod | 1 - 3 files changed, 1 insertion(+), 12 deletions(-) diff --git a/Makefile b/Makefile index 2986b10..be7bd99 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -tools: +cli: go build -mod vendor -o bin/pubssed-broadcast cmd/pubssed-broadcast/main.go go build -mod vendor -o bin/pubssed-client cmd/pubssed-client/main.go go build -mod vendor -o bin/pubssed-server cmd/pubssed-server/main.go diff --git a/README.md b/README.md index f0b26a9..6e4ac4b 100644 --- a/README.md +++ b/README.md @@ -4,16 +4,6 @@ Listen to a Redis PubSub channel and then rebroadcast it over Server-Sent Events (SSE). -## Install - -You will need to have both `Go` (specifically version [1.12](https://golang.org/dl/) or higher) and the `make` programs installed on your computer. Assuming you do just type: - -``` -make tools -``` - -All of this package's dependencies are bundled with the code in the `vendor` directory. - ## Packages ### broker diff --git a/go.mod b/go.mod index 67cf27f..9a9cb23 100644 --- a/go.mod +++ b/go.mod @@ -3,6 +3,5 @@ module github.com/whosonfirst/go-pubssed go 1.12 require ( - github.com/go-redis/redis v6.15.9+incompatible // indirect github.com/go-redis/redis/v8 v8.8.3 )