kafka-ui/kafka-ui-react-app/README.md
Ottavio M. Hartman efb8410bd6
Update documentation; fix links (#1603)
* closes 1602

* readme

* fixes

* docs

Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
2022-02-17 19:26:15 +03:00

1.5 KiB

UI for Apache Kafka

UI for Apache Kafka management

Quality Gate Status

Table of contents

Requirements

Getting started

Go to react app folder

cd ./kafka-ui-react-app

Install Husky

npm install -g husky

Install dependencies

npm install

Generate API clients from OpenAPI document

npm run gen:sources

Start application

Proxying API Requests in Development

Create or update existing .env.local file with

HTTPS=true # if needed
DEV_PROXY= https://api.server # your API server

Run the application

npm start

Docker way

Have to be run from root directory.

Start UI for Apache Kafka with your Kafka clusters:

docker-compose -f ./documentation/compose/kafka-ui.yaml up

Make sure that none of the .env* files contain DEV_PROXY variable

Run the application

npm start