Skip to content

Commit efb8410

Browse files
Update documentation; fix links (provectus#1603)
* closes 1602 * readme * fixes * docs Co-authored-by: Roman Zabaluev <[email protected]>
1 parent e2a3b7b commit efb8410

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ We have plenty of [docker-compose files](documentation/compose/DOCKER_COMPOSE.md
6969

7070
- [SSO configuration](documentation/guides/SSO.md)
7171
- [AWS IAM configuration](documentation/guides/AWS_IAM.md)
72-
- [Docker-compose files](documentation/guides/yaml-description.md)
72+
- [Docker-compose files](documentation/compose/DOCKER_COMPOSE.md)
7373
- [Connection to a secure broker]()
7474

7575
## Connecting to a Secure Broker

documentation/project/contributing/building.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@ Build a docker container with the app:
88
```
99
Start the app with Kafka clusters:
1010
```sh
11-
docker-compose -f ./docker/kafka-ui.yaml up -d
11+
docker-compose -f ./documentation/compose/kafka-ui.yaml up -d
1212
```
1313
To see the app, navigate to http://localhost:8080.
1414

15-
If you want to start only kafka clusters (to run the app via `boot:run`):
15+
If you want to start only kafka clusters (to run the app via `spring-boot:run`):
1616
```sh
17-
docker-compose -f ./docker/kafka-clusters-only.yaml up -d
17+
docker-compose -f ./documentation/compose/kafka-clusters-only.yaml up -d
1818
```
19-
Then start the app with a **local** profile.
19+
20+
Then, start the app.
2021

2122
## Where to go next
2223

documentation/project/contributing/running.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,18 @@
33
### Running locally via docker
44
If you have built a container locally or wish to run a public one you could bring everything up like this:
55
```shell
6-
docker-compose -f docker/kafka-ui.yaml up -d
6+
docker-compose -f documentation/compose/kafka-ui.yaml up -d
77
```
88

99
### Running locally without docker
10-
Once you built the app, run the following:
10+
Once you built the app, run the following in `kafka-ui-api/`:
1111

1212
```sh
1313
./mvnw spring-boot:run -Pprod
14+
15+
# or
16+
17+
./mvnw spring-boot:run -Pprod -Dspring.config.location=file:///path/to/conf.yaml
1418
```
1519

1620
### Running in kubernetes

documentation/project/contributing/software-required.md

-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,3 @@ Otherwise, some apps within a stack (e.g. `kafka-ui.yaml`) might crash.
2929
## Where to go next
3030

3131
In the next section, you'll [learn how to build the application](building.md).
32-
### GIT SETUP

kafka-ui-react-app/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Have to be run from root directory.
5454

5555
Start UI for Apache Kafka with your Kafka clusters:
5656
```sh
57-
docker-compose -f ./docker/kafka-ui.yaml up
57+
docker-compose -f ./documentation/compose/kafka-ui.yaml up
5858
```
5959

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

0 commit comments

Comments
 (0)