| commit | e3300b8abdfe022e7cb03d7c9ca0b39cd73f3a13 | [log] [tgz] |
|---|---|---|
| author | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | Sun Oct 12 01:36:24 2025 +0000 |
| committer | github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> | Sun Oct 12 01:36:24 2025 +0000 |
| tree | c4e7cdbbfd679b1acf907d571cff499373a57508 | |
| parent | 09969f3bea6e0c4618447fec952c38e27fb57242 [diff] |
Docs sync done from apache/pulsar (#ee33c99)
This repository contains the Apache Pulsar website source code and Apache Pulsar documentation.
Apache Pulsar is an open-source, distributed messaging and streaming platform built for the cloud.
Make changes to the documentation in the docs directory.
To preview the changes, run the following command (prerequisites):
./preview.sh
This command starts a local web server on port 3000 and opens a browser window pointing to the website.
When your documentation changes apply to existing supported versions, you should update both the versioned documentation in the versioned_docs directory and the documentation in the docs directory.
# List all supported major.minor.x versions ./scripts/docs-tool.sh supported_versions
After committing the changes for the docs directory, you can use the docs-tool to apply the changes to the versioned docs. This tool is a wrapper around git diff and patch. If the patch is not applied correctly, you will have to manually apply the changes to the versioned docs.
./scripts/docs-tool.sh apply_changes_to_versioned_docs
If the https://pulsar.apache.org website doesn't get updated, check the latest GitHub Actions workflow run for the main branch. If it succeeded, the problem could be that the git history for the asf-site-next branch is too large and needs to be truncated. Here are the commands to perform that task:
git clone -b asf-site-next https://github.com/apache/pulsar-site pulsar-site-static cd pulsar-site-static git checkout --orphan asf-site-next-reset git add -A git commit -m "History resetted" git push -f HEAD:asf-site-next