chore: add Makefile and .envrc for dev environment

This commit is contained in:
Pierre Martin
2026-03-23 14:44:36 +01:00
parent 205499c00d
commit a6eb9f1406

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONY: build test lint vet clean
build:
go build -o vmux ./...
test:
go test -v -race ./...
lint: vet
vet:
go vet ./...
clean:
rm -f vmux