Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/stchris/aleph-tui

A text user interface for Aleph
https://github.com/stchris/aleph-tui

aleph ratatui rust tui

Last synced: about 2 months ago
JSON representation

A text user interface for Aleph

Awesome Lists containing this project

README

        

# aleph-tui

This is a text UI for [aleph](https://www.github.com/alephdata/aleph). It allows one to monitor the status of an Aleph instance in real time. It uses the Aleph API to retrieve this information and shows roughly the same data one would see on Aleph's status page.

![aleph-tui](aleph-tui.png)
![aleph-tui with profile selection menu open](aleph-tui-profile-selector.png)

## Installation

Check the individual [release pages](https://github.com/stchris/aleph-tui/releases) for instructions.

On mac OS:

```sh
brew install stchris/homebrew-formulae/aleph-tui
```

## Configuration

`aleph-tui` assumes the configuration to live in `$HOME/.config/aleph-tui.toml`. It allows you to connect to multiple Aleph instances through `profiles`. Here is an example file:

```toml
default = "local"

[profiles]
[profiles.local]
url = "http://localhost:8080/"
token = ""

[profiles.my-aleph]
url = "https://my.aleph.instance/"
token = ""
```

Find your personal API token by going to `/settings` on your Aleph instance and copying the value from the `API Secret Access Key` field.

`default` defines the profile to be loaded when `aleph-tui` starts up.