25 lines
No EOL
342 B
Makefile
25 lines
No EOL
342 B
Makefile
run:
|
|
go run .
|
|
|
|
run-nix:
|
|
nix run .
|
|
|
|
run-container:
|
|
nix build .#container
|
|
docker load -i result
|
|
docker run -it --rm -p 8169:8169 localhost/roleypoly/roleypoly
|
|
|
|
precommit: fmt tidy update-vendor-hash test
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
tidy:
|
|
go clean -modcache
|
|
go mod tidy
|
|
|
|
update-vendor-hash:
|
|
scripts/update-vendor-hash.sh
|
|
|
|
test:
|
|
go test ./...
|