From 42ca31273c2b39e8e7b45f8d1bbf9021589a57e8 Mon Sep 17 00:00:00 2001 From: Drew Bednar Date: Sun, 3 Nov 2024 17:02:05 -0500 Subject: [PATCH] Updates for TLS --- Makefile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 96edf2b..470cc6c 100644 --- a/Makefile +++ b/Makefile @@ -35,4 +35,4 @@ dev-logs: .PHONEY: dev-logs test: - go test -v ./... \ No newline at end of file + go test -v ./... diff --git a/README.md b/README.md index 1053786..b9fa34c 100644 --- a/README.md +++ b/README.md @@ -61,10 +61,10 @@ To run the application end to end first start the development server: make start-dev ``` -Next we can start our subscriber: +Next we can start our subscriber. The following command connects to the TLS listener port. ``` -go run +go run cmd/subscriber/main.go --host 0.0.0.0 --port 8883 ```