mirror of
https://github.com/rjNemo/go-pass-gen
synced 2026-06-06 02:46:40 +00:00
19 lines
No EOL
326 B
Makefile
19 lines
No EOL
326 B
Makefile
lint:
|
|
golangci-lint run
|
|
|
|
dev:
|
|
air
|
|
|
|
run:
|
|
go run main.go
|
|
|
|
run-web:
|
|
go run main.go --web=t
|
|
|
|
web:
|
|
cd client && npm run start
|
|
|
|
test:
|
|
go test -json -count=1 ./... -coverpkg=./... -coverprofile coverage.txt -covermode=atomic | gotestfmt && go tool cover -html coverage.txt && rm coverage.txt
|
|
|
|
.PHONY: lint run dev run-web test |