diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..941edb3 --- /dev/null +++ b/Makefile @@ -0,0 +1,12 @@ + +build: + go build ./cmd/tokidoki + +debug: + go build -tags "pam nullauth" ./cmd/tokidoki + +fmt: + go fmt ./... + +lint: + golangci-lint run