-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(docs): readme for UI development (#181)
Signed-off-by: Derek Wang <[email protected]>
- Loading branch information
Showing
2 changed files
with
19 additions
and
16 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
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 |
---|---|---|
@@ -1,27 +1,22 @@ | ||
# Numaflow UI | ||
|
||
![Numaflow Image](../docs/assets/numa.svg) | ||
![Numaflow Image](../docs/assets/numaproj.svg) | ||
|
||
A web-based UI for Numaflow | ||
|
||
The UI has the following features: | ||
* View running pipelines in your namespace | ||
* View Vertex and Edge Information of your pipeline | ||
* View BackPressure and Pending Messages | ||
* View Container (main/udf) Logs for a given vertex | ||
* View Container Logs for a given vertex | ||
|
||
## Development | ||
|
||
This explains how to set up a development environment so you can get started with UI development | ||
See [Development Guide](../docs/development.md). | ||
|
||
### Prerequisites | ||
|
||
Follow the instructions below to set up your development environment. | ||
|
||
### Install requirements | ||
|
||
These tools are required for development. | ||
|
||
1. [`Numaflow`](https://github.com/numaproj/numaflow/blob/master/docs/DEVELOPMENT.md): Follow the document to prepare `Numaflow` development environment. | ||
1. [`node`](https://nodejs.org/en/download/): NodeJS - `brew install node`. | ||
1. [`yarn`](https://yarnpkg.com/): Package manager - `brew install yarn` | ||
```shell | ||
# Build image and deploy to a k3d cluster | ||
make start | ||
# Port-forward, and access https://localhost:8443 | ||
kubectl -n numaflow-system port-forward svc/numaflow-server 8443 | ||
``` |