budget-tracker 0.3.1

A TUI based budget tracker
# Budget Tracker ![crates.io]https://img.shields.io/crates/v/budget-tracker.svg

## Description
A minimal TUI based budget tracker.

Users can track date, a brief description, the type of purchase and the total amount spent/received.
For example, the following expense types are supported by default, but users can create their own types too while adding a transaction.
- Food
- Travel
- Fun
- Medical
- Personal

The data by default is stored at `~/.local/share/budget-tracker/expenses.csv`.

## Usage
- To install the program, make sure to have cargo [installed]https://doc.rust-lang.org/cargo/getting-started/installation.html, then run the following command.

```bash
cargo install budget-tracker
```

If the PATH is not set directly add the following to your shell profile.

```bash
export PATH="$HOME/.cargo/bin:$PATH"
```

- To see graphical data run:
```bash
budget-tracker
```

- To add a new entry (add `-` infront of amount to show expenses) run any one of:
```bash
budget-tracker --add
budget-tracker -a
```

- To manually edit the database run any one of:
```bash
budget-tracker --edit
budget-tracker -e
```

By default it opens using `nano`. To specify an editor set the `EDITOR` environment variable.
```bash
EDITOR=vim budget-tracker --edit
```

This will open the file in vim.

## Screenshot
![](https://github.com/Saphereye/budget-tracker/blob/main/assets/image.png)