| commit | c0a9bb1c7e749229f619ce11921aff98d384f76a | [log] [tgz] |
|---|---|---|
| author | David Arthur <mumrah@gmail.com> | Tue Feb 25 11:47:47 2025 -0500 |
| committer | David Arthur <mumrah@gmail.com> | Tue Feb 25 11:47:47 2025 -0500 |
| tree | ea3e7762cf3fbd0b8fbeaf2cd362c525d66bab6c | |
| parent | fc52e3a6def4fd0bd480420c7acffd3f926de8a1 [diff] |
fix the url
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.