From 65a92874877039dd9bfa543c98385b977d5ac2a8 Mon Sep 17 00:00:00 2001 From: Tyler Perkins Date: Thu, 14 Dec 2023 15:43:03 -0500 Subject: [PATCH] Update README --- README.md | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/README.md b/README.md index 5aa617d..14dbf09 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,27 @@ # HumanCallStack This is an interation on my previous project, [stackToDo](https://git.clortox.com/tyler/stackToDo). + +## Install + +By default, the install script will install everything into `~/.local/bin`. Be sure to have this in your `$PATH`! + +```bash +./install.sh +``` + +## Usage + +``` +stack - Watch in real time the state of the call stack +tpeek - Look at the top (most recent) task in the stack +tpop - Pop off the latest task from the stack +tpush - Push a new task onto the stack +``` + +## Development + +Be sure to to development with `pre-commit` installed. I use `pre-commit` to enforce code quality standards upon myself. + +Find the active development version on my [gitea](https://git.clortox.com/tyler/HumanCallStack). +You can also find a real time mirror of this repository on my [github](https://github.com/Clortox/HumanCallStack).