diff --git a/makefile b/makefile new file mode 100644 index 0000000..758aad6 --- /dev/null +++ b/makefile @@ -0,0 +1,11 @@ +build: + go build ./... + +test: + gotestsum --format testname -- -race ./... + +install_tools: + go install gotest.tools/gotestsum@latest + +run_server: + go run ./cmd/server