549 B
549 B
description, alwaysApply
| description | alwaysApply |
|---|---|
| Use go-task (Taskfile) instead of Make for task automation | true |
Use Taskfile, not Make
This project uses go-task (Taskfile.yaml) for task automation. Do not use Makefiles.
- Task definitions go in
Taskfile.yamlat the repo root. - Use
task <name>to run tasks (e.g.task test,task db). - Use colon-separated namespacing for related tasks (e.g.
task db:stop). - When adding new automation, add a task to
Taskfile.yamlrather than creating a Makefile or shell script.