mirror of
https://github.com/onyx-and-iris/vban-cli.git
synced 2026-03-03 05:29:11 +00:00
57 lines
925 B
Markdown
57 lines
925 B
Markdown
# vban-cli
|
|
|
|
[](https://github.com/astral-sh/uv)
|
|
[](https://github.com/astral-sh/ruff)
|
|
|
|
---
|
|
|
|
## Install
|
|
|
|
#### With uv
|
|
|
|
```console
|
|
uv tool install vban-cli
|
|
```
|
|
|
|
#### With pipx
|
|
|
|
```console
|
|
pipx install vban-cli
|
|
```
|
|
|
|
The CLI should now be discoverable as `vban-cli`
|
|
|
|
---
|
|
|
|
## Configuration
|
|
|
|
### Flags
|
|
|
|
```console
|
|
vban-cli --host=localhost --port=6980 --streamname=Command1
|
|
```
|
|
|
|
### Environment Variables
|
|
|
|
example .envrc:
|
|
|
|
```env
|
|
#!/usr/bin/env bash
|
|
|
|
export VMR_CLI_HOST="localhost"
|
|
export VMR_CLI_PORT=6980
|
|
export VMR_CLI_STREAMNAME=Command1
|
|
```
|
|
|
|
---
|
|
|
|
## Use
|
|
|
|
*To be completed*
|
|
|
|
---
|
|
|
|
## License
|
|
|
|
`vban-cli` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
|