Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iamd3vil/lift
A CLI Client for Liftbridge
https://github.com/iamd3vil/lift
Last synced: 9 days ago
JSON representation
A CLI Client for Liftbridge
- Host: GitHub
- URL: https://github.com/iamd3vil/lift
- Owner: iamd3vil
- License: mit
- Created: 2020-09-27T06:09:58.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T04:19:30.000Z (about 2 years ago)
- Last Synced: 2024-06-20T12:44:47.155Z (5 months ago)
- Language: Go
- Size: 52.7 KB
- Stars: 9
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lift
A CLI Client for Liftbridge
## Usage
```
$ lift -h
NAME:
lift - A CLI Client for LiftbridgeUSAGE:
lift [global options] command [command options] [arguments...]AUTHOR:
Sarat ChandraCOMMANDS:
stream, s Commands about creating/deleting/consuming from streams
help, h Shows a list of commands or help for one commandGLOBAL OPTIONS:
--verbose Enable verbose logging (default: false)
--config value, -c value Configuration Path
--help, -h show help (default: false)
--version, -v print the version (default: false)
```## Configuration
Configuration path can be passed to `lift` by using `--config` flag. If nothing is given `lift` expects the path to be at `$HOME/.config/lift/config.toml`.
A sample config can be generated by running `lift init` which generates the following config at the given path:
```toml
[servers]
addresses = ["localhost:9292"]
```