This commit is contained in:
41666 2025-03-24 23:44:07 -07:00
parent 4fc045e037
commit b9a05bedf9
8 changed files with 45 additions and 119 deletions

24
justfile Normal file
View file

@ -0,0 +1,24 @@
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 mod tidy
update-vendor-hash:
scripts/update-vendor-hash.sh
test:
go test ./...