| commit | 1012a4a5a4da0441bcb0da8837dbfdea1d746875 | [log] [tgz] |
|---|---|---|
| author | David Arthur <mumrah@gmail.com> | Tue Aug 06 09:33:43 2024 -0400 |
| committer | David Arthur <mumrah@gmail.com> | Tue Aug 06 09:33:43 2024 -0400 |
| tree | aa7a918967c23c48f545df88058e81de7582b795 | |
| parent | 8bb9f75ea21fae47506916a2b179e179edbc86a3 [diff] |
add second mention of rmr /migration
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.