tissue-tracker
v0.0.1
Published
Goals: - tissue is a task/issue tracker - made to be committed with git - stored in the repo alongside the code - uses commits/PRs/etc like code (if desired) - it provides a simple CLI tool for creating/updating tasks - it serves a website for interacting
Readme
tissue
Goals:
- tissue is a task/issue tracker
- made to be committed with git
- stored in the repo alongside the code
- uses commits/PRs/etc like code (if desired)
- it provides a simple CLI tool for creating/updating tasks
- it serves a website for interacting with a visual interface
- everything is plain-text enough that you could read/write things manually should the tool die
- git provides any notions of "users" and encodes the history of updates
- files are markdown (no frontmatter)
- filenames are the issue IDs
- folders store the status (todo folder, in progress folder, etc)
- you can create any folder to create a new status
- ids are
YYYY-< seconds since start of year, converted to sortable base36 >
Local development
- Clone the repo and
bun installthe dependencies. bun run devto start the local server.- Use
bun run buildandbun run startto compile and run the full build.
Note: bun commands can be swapped out for npm commands, if you prefer.
