Metadata-Version: 2.1
Name: inventree-tui
Version: 0.1.5
Summary: Terminal UI for InvenTree
Description-Content-Type: text/markdown
Requires-Dist: textual
Requires-Dist: inventree
Requires-Dist: pydantic
Requires-Dist: python-dotenv


# InvenTree TUI

Terminal User Interface for InvenTree, built with [Textual](https://github.com/Textualize/textual). Project maintained on [GitHub](https://github.com/j-huff/inventree-tui).

## Installation

InvenTree TUI can be install via PyPi using the command `pip install inventree-tui`.

Once installed, launch the TUI using the command `python -m inventree-tui`. You will have to configure the required environment variables first (see below).

## Configuration

To run inventree-tui, you must set the following environment variables: `INVENTREE_API_HOST`, `INVENTREE_API_TOKEN`

You can also set these in a file named `.env`:

```
# .env file
INVENTREE_API_HOST=https://example.com/
INVENTREE_API_TOKEN=inv-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx-xxxxxxxx
```
