refactor: update build commands from make to task in documentation and add Taskfile for task management

This commit is contained in:
mlogclub
2026-07-24 14:43:03 +08:00
parent 4c357411ad
commit e2a76ef54a
5 changed files with 267 additions and 37 deletions
+9 -9
View File
@@ -138,7 +138,7 @@ cd ..
Start backend and frontend development servers together:
```bash
make dev
task dev
```
Default development URLs:
@@ -186,14 +186,14 @@ Default development URLs:
## Common Commands
```bash
make dev # start backend and frontend development servers
make build # build the frontend SPA and current-platform Go binary into dist/
make build LANCEDB=1 # build the current-platform LanceDB binary into dist/
make release # build linux/darwin/windows release binaries into dist/
make release LANCEDB=1 # build LanceDB release binaries into dist/
make generator # run code generation
make enums # generate frontend enums
make help # show available make targets
task dev # start backend and frontend development servers
task build # build the frontend SPA and current-platform Go binary into dist/
task build LANCEDB=1 # build the current-platform LanceDB binary into dist/
task release # build linux/darwin/windows release binaries into dist/
task release LANCEDB=1 # build LanceDB release binaries into dist/
task generator # run code generation
task enums # generate frontend enums
task --list # show available tasks
```
## AI Agent Workflow