-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update installation instructions in README.md
- Loading branch information
Showing
1 changed file
with
9 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,21 +8,23 @@ Flowrs is a TUI application for [Apache Airflow](https://airflow.apache.org/). I | |
|
||
You can install `flowrs` via Homebrew if you're on macOS / Linux / WSL2: | ||
|
||
`brew install jvanbuel/flowrs` | ||
``` | ||
brew tap jvanbuel/flowrs | ||
brew install flowrs | ||
``` | ||
|
||
or by downloading the binary directly from GitHub: | ||
|
||
`curl -s ....` | ||
```bash | ||
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/jvanbuel/flowrs/releases/latest/download/flowrs-tui-installer.sh | sh | ||
``` | ||
|
||
Alternatively, you can build `flowrs` from source by cloning the repository and install the project with `cargo`: | ||
Alternatively, you can build `flowrs` from source with `cargo`: | ||
|
||
```bash | ||
git clone [email protected]:jvanbuel/flowrs.git | ||
cargo install --path . | ||
cargo install flowrs-tui --locked | ||
``` | ||
|
||
## Features | ||
|
||
## Usage | ||
|
||
You can register an Airflow server instance with the `flowrs config add` command: | ||
|