.PHONY: build dev dev-frontend frontend test clean

build:
	go build -o bin/hwlab ./cmd/hwlab/...

dev:
	air -c .air.toml

frontend:
	cd web && npm run build

dev-frontend:
	cd web && npm run dev

test:
	go test ./... -v

clean:
	rm -rf bin/
