This is a site generator project for Apache Camel. It generates static HTML and resources that are to be published.
Tools used to generate the website:
- Git a source code management tool used to fetch document sources from different
github repositories.
- Node.js a JavaScript runtime used to build the website. You will need to use Node.js version 18+.
- yarn a blazing fast dependency and package manager tool used to download
and manage required libraries.
- (installed via yarn) Gulp a task automation tool. Used to build the Camel
Antora UI theme.
- (installed via yarn) Hugo a static site generator. Simplified, it takes the
documentation from the content directory and applies templates from layouts
directory and together with any resources in static directory generates output in
the public directory.
- (installed via yarn) Antora a documentation site generator. It uses
Asciidoc documents from different sources in the Camel,
Camel K and Camel Quarkus
repositories where user manual and component reference documentation resides and renders them for inclusion in this
website.
- (optional) Maven a build tool used to run the complete website generating process.
You can build the website locally using the tools Node.js and yarn.
If you can not use these tools on your local machine for some reason you can also build the website using Maven as described in section "Build with Maven".
For windows users, a beginning step to install yarn and nvm on your local system is through installing chocolatey.
An easy step to step guide to install chocolatey on your local system is as follows: 1. Open cmd/powershell and run it as administrator.
Install with cmd.exe
> @"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -NoProfile -InputFormat None -ExecutionPolicy Bypass -Command " [System.Net.ServicePointManager]::SecurityProtocol = 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))" && SET "PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin"
Install with PowerShell.exe
> Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Make sure that you have Node.js (herein "Node") installed.
$ node --version
If this command fails with an error, you do not have Node installed.
This project requires the Node LTS version 18+ (e.g., v20.11.1).
Please make sure to have a suitable version of Node installed. You have several options to install Node on your machine.
An easy step to step guide to install nvm and install node v18 on your local system is as follows:
$ touch ~/.bash_profile
$ curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.39.7/install.sh | bash
$ source ~/.nvm/nvm.sh
$ nvm install 20
Note - If you have a different Node version installed, you can use the following command to switch to Node LTS version 20 (recommended, but any version 18+ will work).
$ nvm use 20
Note - The following steps need to be ran on cmd as administrator only.
An easy step to step guide to install nvm and install node v20 on your local system is as follows:
> choco install nvm
> nvm install 20
Note - If you have a different Node version installed, you can use the following command to switch to Node LTS version 20 (recommended, but any version 18+ will work).
> nvm use 20
Now that you have Node 20 installed, you can proceed with checking the Yarn installation.
Follow the documentation on installing Yarn for your Operating system.
Note: For windows users, run on cmd as administrator and install yarn through chocolatey.
Clone the Apache Camel Website project using git:
$ git clone https://github.com/apache/camel-website.git
The command above clones the Apache Camel Website project. After that you can switch to the new project directory on your filesystem.
Some of the content for the website is derived from the data received from GitHub API and rate limits can cause build failures. For that reason it is necessary to set either the following environment variables:
HUGO_PARAMS_GitHubUsername=<GitHub username>HUGO_PARAMS_GitHubToken=<GitHub token>Or the following environment variable:
GITHUB_TOKEN=<personal access token>These values are used by Hugo when building or running in development mode (yarn preview:hugo) or building the
website (yarn build:hugo or yarn build-all) to access GitHub API with a higher rate limit.
NOTE: When you clone the camel-website repository the binaries present in the Yarn PnP cache or in the
.yarn/unplugged directories are built for x86-64 Linux, so if you're running on a different architecture or OS
run yarn workspaces foreach rebuild to rebuild the binaries.
We're using yarn workspaces to build both the theme and the website run build-all script, for example:
$ yarn build-all
That will build the Antora theme (from antora-ui-camel directory) and the website. Result of the build can be seen in the public directory.
The theme sources are located inside Project root directory/antora-ui-camel. So first switch to that directory:
$ cd antora-ui-camel
In that directory execute:
$ yarn build # to perform the ui theme build
You should see the Antora theme bundle generated in in antora-ui-camel/build/ui-bundle.zip.
In case yarn build raises error, run yarn format to format the code and re-run yarn build to build your bundle successfully.
The Camel Antora UI theme should not be a subject to change very frequently. So you might execute this once and never come back.
Building the website requires the built Antora Camel UI theme bundle from above. Please check that the theme bundle exists in antora-ui-camel/build/ui-bundle.zip.
To build the website go to the project root directory and run:
$ yarn build # to perform the build
In case yarn build throws the error: JavaScript heap out of memory, the issue can be resolved by increasing the memory used by node.js by setting NODE_OPTIONS environment variable to include --max_old_space_size, for example to increase the old space to 4GB do:
$ export NODE_OPTIONS="--max_old_space_size=4096"
This should fetch doc sources for Camel and Camel K
and generate the website with Hugo. You should see the generated website in the public directory.
You can preview the Apache Camel website on your local machine once you have the generated website available in
the public directory.
Hugo can start a simple web server serving the generated site content so you can view it in your favorite browser.
Simply call
$ yarn preview
and you will be provided with a web server running the site on http://localhost:1313/
Point your favorite browser to http://localhost:1313/ and you will see the Apache Camel website.
Changes that are made to the content managed by Hugo (i.e. content, layouts, config.toml) are applied automatically and reloaded in the browser. To make changes to the content managed by Antora, a rebuild needs to be done. The same is true for the CSS changes in the antora-ui-camel. To rebuild you can run, in another terminal window, from the root directory of the website:
$ (cd antora-ui-camel && yarn build) && yarn antora --clean --fetch antora-playbook.yml
This will build the antora-ui-camel which holds all the CSS and JavaScript, and then rebuild the documentation, resulting in an updated content in the documentation directory.
To iterate quickly, it's easier to make changes directly in the browser tooling and then bring the changes over to the CSS files after the fact.
To build the documentation we pull the content of git repositories (see antora-playbook.yml), so to make changes locally and have them built or previewed without those changes being merged to Camel git repositories you need to adapt the antora-playbook.yml file.
For example to work on the user manual locally change the content, sources to point to HEAD of your local git repository, in this example located in ../camel:
content:
sources:
- url: ../camel
branches: HEAD
start_paths:
# manual
- docs/user-manual
Now you can run yarn build:antora or yarn preview and see the locally made changes. More details on this you can find in the Antora documentation.
Typical workflow is to run the yarn preview in one command line session and then rebuild the Antora documentation by running yarn build:antora for the documentation to be refreshed.
TIP: We pull in several git repositories and build several versions (branches) of documentation from them, time can be saved by removing sources for the documentation not worked on. Though be careful about inter-dependencies, for example several documents in the component reference point to the user manual.
Setting the CAMEL_ENV changes the output of the website build slightly, possible values are development (set by default if CAMEL_ENV is unset), production or netlify.
To run the optimizations, which currently consist of running htmlmin to reduce the size of generated HTML documents, set the CAMEL_ENV environment variable to production, for example:
$ CAMEL_ENV=production yarn build
When build is performed on Netlify, we set it to netlify to add the link to Netlify required by Netlify's open source policy.
The Apache Camel website is composed of different sources. So where to add and contribute changes in particular?
The site main menu is defined in the top level configuration config.toml. You can add/change menu items there.
The basic website content is located in content. You can find several different directorys representing different areas of the website:
Use the blog archetype to create a new markdown content file in content/blog:
$ yarn hugo new --kind blog blog/YYYY/MM/PostName/index.md # replace YYYY with the year, MM with the month and PostName with the actual name
Put a nice featured image in content/blog/YYYY/MM/PostName/featured.png and edit content/blog/YYYY/MM/PostName/index.md filling in the details.
The final generated URL would be something like https://camel.apache.org/blog/2020/05/MyNewPost/.
Don't forget to remove draft: true to publish the blog post.
Use the security-advisory archetype to create a new markdown content file in content/security:
$ yarn run hugo new --kind security-advisory security/CVE-YYYY-NNNNN # replace YYYY-NNNNN with the CVE number
This will create a content/security/CVE-YYYY-NNNNN.md file which you need to edit to and fill in the required parameters.
The content of the created markdown file is added to the Notes section.
Place the signed PGP advisory in plain text as content/security/CVE-YYYY-NNNNN.txt.asc.
Make sure that you set the draft: false property to have the page published.
Use the release-note archetype to create a new markdown content file in content/releases:
$ yarn run hugo new --kind release-note releases/release-x.y.z.md # replace x.y.z with the release version
This will create a content/release-x.y.z.md file which you need to edit to and fill in the required parameters.
The content of the created markdown file is added to the New and Noteworthy section.
Make sure that you set the draft: false property to have the page published.
Use the release-{category} archetype to create a new markdown content file in `content/releases/{category}-{version with under
$ claude mcp add camel-website \
-- python -m otcore.mcp_server <graph>