add tests, fix bugs, and make cli usable without interactivity

This commit is contained in:
Zoe
2025-05-06 11:00:56 -05:00
parent 4ab58f6324
commit 5bb696052a
12 changed files with 216 additions and 47 deletions

View File

@@ -7,9 +7,10 @@
"scripts": {
"build:daemon": "go build -o fluxd cmd/daemon/main.go",
"build:cli": "go build -o flux cmd/cli/main.go",
"build:all": "go build -o fluxd cmd/daemon/main.go && go build -o flux cmd/cli/main.go",
"build:all": "zqdgr build:daemon && zqdgr build:cli",
"run:daemon": "go run cmd/daemon/main.go",
"run:cli": "go run cmd/flux/main.go"
"run:cli": "go run cmd/cli/main.go",
"test": "./test.sh"
},
"pattern": "**/*.go",
"excluded_dirs": []