A simple clli todo app written in Rust.
```bash $ list-rs
Welcome to list-rs, a cli todo app written in Rust 🦀! Task list is empty. Run list-rs add to add a new task. Run list-rs --help to get all commands ```
bash
$ list-rs add "Watch Oppenheimer"
Task Added
bash
$ list-rs remove 3
Task 3 removed
bash
$ list-rs update 3 "A new title"
Task 3 updated
bash
$ list-rs done 4
Task 4 set to Done
bash
$ list-rs undone 4
Task 4 set to Undone
bash
$ list-rs archive 4
Task 4 set to Archived
```bash $ list-rs
4) ⌛ Take vitamins 3) ⌛ Meditate 2) ⌛ Go to the gym 1) ⌛ Watch Oppenheimer ```
```bash $ list-rs all
4) 📦 Take vitamins 3) ⌛ Meditate 2) ✅ Go to the gym 1) ⌛ Watch Oppenheimer ```
```bash $ list-rs archived
4) 📦 Take vitamins ```
```bash $ list-rs search "Hello"
6) ⌛ Hello World 5) ⌛ Hello ```
bash
cargo b --release
bash
cargo t --release
```bash $ list-rs --help Usage: list-rs [COMMAND]
Commands: add Adds a task remove Removes a task with a given id update Updates a task with a given id list Lists all pending tasks all List all tasks archived List archived tasks archive Sets a task with a given id to Archived done Sets a task with a given id to Done undone Sets a task with a given id to Undone search Search for a task by its contents undo Revert last change redo Redo last change help Print this message or the help of the given subcommand(s)
Options: -h, --help Print help -V, --version Print version ```
Create a .env
file and add the following line
bash
DB_PATH=/your/custom/path/tasks.db