| commit | 393479eb1d349fcbc87fb67fa472774955f6fa7c | [log] [tgz] |
|---|---|---|
| author | Lianet Magrans <98415067+lianetm@users.noreply.github.com> | Fri Nov 14 10:52:14 2025 -0500 |
| committer | GitHub <noreply@github.com> | Fri Nov 14 10:52:14 2025 -0500 |
| tree | 0671bc4a2c60beb781a5a96c5674a424e29b0185 | |
| parent | bc7b22b1a040a925d72a360828f9a0226612e509 [diff] |
MINOR: remove 4.1.0 from supported released (after 4.1.1) (#746) * remove 4.0.1 supported * archive 4.1.0 * upd
The documentation can be hosted on a local webserver via httpd.
You can run it with the following command, note that it requires docker:
./start-preview.sh
Then you can open localhost:8080 on your browser and browse the documentation.
To kill the process, just type ctrl + c.
# change directory into kafka repository cd KAFKA_REPO ./gradlew clean siteDocTar # supposing built with scala 2.13 tar zxvf core/build/distributions/kafka_2.13-$(./gradlew properties | grep version: | awk '{print $NF}' | head -n 1)-site-docs.tgz
# change directory into kafka-site repository cd KAFKA_SITE_REPO # copy the generated documents into dev folder rm -rf dev mkdir dev cp -r KAFKA_REPO/site-docs/* dev # preview it ./start-preview.sh
Then you can open http://localhost:8080/dev/documentation/ on your browser and browse the generated documentation.