Stripped lots of boilerplate prepare for minimal test branch

This commit is contained in:
Jonas Hahn
2025-08-22 18:53:33 +02:00
parent 6f53cddf6c
commit 19e4834a9e
10 changed files with 11 additions and 219 deletions

View File

@@ -4,24 +4,8 @@
# Main target
run:
go run ./cmd
# Formatting the whole codebase
format:
gofmt -w ./src
gofmt -w ./cmd
# Test in verbose mode
test:
go test ./src -v
go test ./cmd -v
go run ./src
# Nix stuff
nix-run:
nix develop --command make run
nix-test:
nix develop --command make test
nix-format:
nix develop --command make format