From f4b753b19f09ee381026bb3d77a5175a8c609e3b Mon Sep 17 00:00:00 2001 From: Itiel shwartz Date: Tue, 20 Sep 2022 11:02:37 +0300 Subject: [PATCH] easier local dev (#13) * easier local dev * rename and add build * change pull command Co-authored-by: Itiel Shwartz --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..dea2720 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +pull: + git pull + +build: + go build -o bin/dashboard . + + +debug: + DEBUG=1 ./bin/dashboard \ No newline at end of file