kafka-ui/kafka-ui-react-app
Oleg Shur 2d82b9c0a9
New Confirmation Messages modal (#2376)
* New Confirmation Messages

* Fix #2348

* Fix codesmels

* fix #2242

* fix #2347
2022-08-03 11:37:35 +03:00
..
.husky Upgrade deps (#2206) 2022-06-27 13:07:47 +03:00
.jest Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00
public Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00
src New Confirmation Messages modal (#2376) 2022-08-03 11:37:35 +03:00
.babelrc Migrate React app to Vite (#2153) 2022-06-15 16:59:02 +03:00
.editorconfig enhancement/24-use-arbnb-setup 2020-04-13 13:26:44 +03:00
.env Add ability to use custom basePath (#511) 2021-06-03 15:46:13 +03:00
.eslintignore Configuration files updated 2021-02-02 14:48:29 +03:00
.eslintrc.json FE: KSQL execution is unstable (#1576) 2022-03-17 16:09:48 +03:00
.gitignore Use pnpm (#2081) 2022-07-01 12:02:18 +03:00
.nvmrc Use Node v16.15.0 (#1958) 2022-05-12 13:08:51 +03:00
.prettierrc Kafka Connect with React-Query (#2258) 2022-07-18 13:06:55 +03:00
docker-compose.yaml Implement LDAP authentication (#1173) 2021-12-22 18:18:59 +03:00
index.html Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00
jest.config.ts Upgrade dependancies (#2290) 2022-07-19 12:42:32 +03:00
LICENSE Feature/backend init (#3) 2020-02-27 15:55:53 +03:00
openapitools.json Fix npm generate on windows 2021-12-03 18:09:23 +03:00
package.json Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00
pnpm-lock.yaml Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00
README.md Use pnpm (#2081) 2022-07-01 12:02:18 +03:00
sonar-project.properties Kafka Connect with React-Query (#2258) 2022-07-18 13:06:55 +03:00
tsconfig.dev.json [CHORE] Update dependencies. Clean linter warnings 2020-12-02 17:33:59 +03:00
tsconfig.json Migrate React app to Vite (#2153) 2022-06-15 16:59:02 +03:00
vite.config.ts Make frontend work properly with custom context url (#2363) 2022-08-01 20:47:49 +04:00

UI for Apache Kafka

UI for Apache Kafka management

Quality Gate Status Security Rating Coverage

Table of contents

Requirements

Getting started

Go to react app folder

cd ./kafka-ui-react-app

Install pnpm

npm install -g pnpm

Install dependencies

pnpm install

Generate API clients from OpenAPI document

pnpm gen:sources

Start application

Proxying API Requests in Development

Create or update existing .env.local file with

VITE_DEV_PROXY= https://api.server # your API server

Run the application

pnpm 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

pnpm start