justfile (364B)
1 binary := "bin/textlog" 2 3 default: build 4 5 # Build the textlog executable. 6 build: 7 mkdir -p bin 8 go build -trimpath -o {{binary}} ./cmd/textlog 9 10 # Remove generated build output. 11 clean: 12 rm -rf bin 13 14 # Format all Go packages. 15 format: 16 go fmt ./... 17 18 # Run the SSH key authentication flow against the sibling server. 19 e2e-key-server: 20 ./dev/e2e-key-server