1
0
Fork 0
mirror of https://github.com/archtechx/todo-system.git synced 2025-12-12 00:54:03 +00:00

Update installation instructions

This commit is contained in:
Samuel Štancl 2024-03-13 20:39:55 +01:00
parent e83185a687
commit deed1718df

View file

@ -192,9 +192,10 @@ To omit ANSI formatting and get raw markdown output, set `NO_COLOR=1` or `TERM=d
There are no downloadable builds at the moment. To compile the tool manually: There are no downloadable builds at the moment. To compile the tool manually:
1. Set up Rust locally https://www.rust-lang.org/tools/install 1. Set up Rust locally https://www.rust-lang.org/tools/install
2. Clone the repo 2. `cargo install --git https://github.com/archtechx/todo-system.git`
3. `cargo build --release` 3. The tool will be added to your `$PATH` automatically as `todos`
4. The binary (`todos`) will appear will `target/release`. Add it to your PATH or create a bash alias:
```sh I personally also like creating an alias that does `todos | less`:
alias todos="/path/to/todos" ```sh
``` alias t="todos | less"
```