initial commit

This commit is contained in:
2026-03-20 08:55:47 +00:00
commit 17889e56bd
11 changed files with 889 additions and 0 deletions

44
README.md Normal file
View File

@@ -0,0 +1,44 @@
# vban-tui
[![uv](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/uv/main/assets/badge/v0.json)](https://github.com/astral-sh/uv)
[![Ruff](https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/astral-sh/ruff/main/assets/badge/v2.json)](https://github.com/astral-sh/ruff)
---
## Install
#### With uv
```console
uv tool install vban-tui
```
#### With pipx
```console
pipx install vban-tui
```
The TUI should now be discoverable as `vban-tui`
---
## Configuration
### Flags
```console
vban-tui --host=localhost --port=6980 --streamname=Command1
```
### Environment Variables
example .envrc:
```env
#!/usr/bin/env bash
export VBAN_TUI_HOST="localhost"
export VBAN_TUI_PORT=6980
export VBAN_TUI_STREAMNAME=Command1
```