From 877ad70fe2c026de7c6531de1eb3f5e5452d1ae6 Mon Sep 17 00:00:00 2001 From: Rodney Osodo Date: Wed, 11 Dec 2024 14:39:44 +0300 Subject: [PATCH] docs: change from supermq to magistrala Signed-off-by: Rodney Osodo --- Makefile | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index e129299..5090a96 100644 --- a/Makefile +++ b/Makefile @@ -21,7 +21,7 @@ build: install: cp ${BUILD_DIR}/propellerd $(GOBIN)/propellerd - + all: build clean: @@ -30,8 +30,21 @@ clean: lint: golangci-lint run --config .golangci.yaml -start-supermq: +start-magistrala: docker compose -f docker/compose.yaml up -d -stop-supermq: +stop-magistrala: docker compose -f docker/compose.yaml down + +help: + @echo "Usage: make " + @echo "" + @echo "Targets:" + @echo " build: build the binary" + @echo " install: install the binary" + @echo " all: build the binary" + @echo " clean: clean the build directory" + @echo " lint: run golangci-lint" + @echo " start-magistrala: start the magistrala docker compose" + @echo " stop-magistrala: stop the magistrala docker compose" + @echo " help: display this help message"