Add blogpost for Language support for Apache Camel - VS Code 0.0.20
announcement

Signed-off-by: Aurélien Pupier <apupier@redhat.com>
5 files changed
tree: 7f254ee7bbb42f75bb9e21664622a73a3f510ca7
  1. .yarn/
  2. antora-ui-camel/
  3. archetypes/
  4. content/
  5. extensions/
  6. layouts/
  7. static/
  8. .dockerignore
  9. .gitignore
  10. .htmlvalidate.json
  11. .yarnrc
  12. config.toml
  13. Dockerfile
  14. gulpfile.js
  15. Jenkinsfile
  16. LICENSE
  17. menu.js
  18. package.json
  19. pom.xml
  20. README.md
  21. rules.js
  22. site.yml
  23. yarn.lock
README.md

Apache Camel Website Logo

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 10.
  • 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

Build with Node and yarn

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”.

Preparing the tools

Node

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 10 (e.g., v10.15.3).

Please make sure to have a suitable version of Node installed. You have several options to install Node on your machine.

Note - If you have different Node version other than Node LTS version 10 you can use following command to make Node LTS version 10 as default Node version.

$ nvm alias default 10

Now that you have Node 10 installed, you can proceed with checking the Yarn installation.

Yarn

Follow the documentation on installing Yarn for your Operating system.

Clone and Initialize the project

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.

Build the Antora Camel UI theme

First step is to build the Antora ui theme used for the Apache Camel website. 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 install # needed only once, or if dependencies change
$ 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.

The Camel Antora UI theme should not be a subject to change very frequently. So you might execute this once and never come back.

Build the website content

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 install # needed only once, or if dependencies change
$ yarn build   # to perform the build

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.

Preview website locally

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.

Contribute changes

The Apache Camel website is composed of different sources. So where to add and contribute changes in particular?

Changes on the website

Menu

The site main menu is defined in the top level configuration config.toml. You can add/change menu items there.

Content

The basic website content is located in content. You can find several different directorys representing different areas of the website:

  • docs: Getting started, user manual, component reference
  • download: Download Camel artifacts
  • news: News, blogs, posts
  • community: Support, contributing, articles, etc.
  • projects: Subproject information (e.g. Camel K)
  • security: Security information and advisories
  • releases: Release notes

Adding new security advisory content

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.

Adding new release note

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 # 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 Noteworth section.

Make sure that you set the draft: false property to have the page published.

Layout and templates

Layout related changes go into layout directory where you will find HTML templates that define the common layout of the different page categories including footer and header templates.

Changes in Antora UI theme

The Antora UI theme basically defines the look and feel of the website. You can find the theme sources within this repository in antora-ui-camel.

You need to rebuild the Antora UI theme in order to see your changes reflected locally.

Changes for Camel and Camel K docs

The Apache Camel website includes documentation sources from other github repositories. Content sources are defined in site.yml.

At the moment these sources are documentation sources form Camel and Camel K. These are basically the component reference docs and the Camel user manual. In case you want to change something here please go to the respective github repository and contribute your change there.

Your changes in these repositories will automatically get visible on the website after a site rebuild.

Build with Maven

The project provides a simple way to build the website sources locally using the build tool Maven.

The Maven build automatically downloads the tool binaries such as node and yarn for you. You do not need to install those tools on your host then. The binaries are added to the local project sources only and generate the website content.

As the Maven build uses pinned versions of node and yarn that are tested to build the website you most likely avoid build errors due to incompatible versions of Node.js tooling installed on your machine.

Preparing Maven

Make sure that you have Maven installed.

$ mvn --version

If this command fails with an error, you do not have Maven installed.

Please install Maven using your favorite package manager (like Homebrew) or from official Maven binaries

Building from scratch

When building everything from scratch the build executes following steps:

  • Download yarn and Node.js binaries to the local project
  • Load required libraries to the local project using yarn
  • Build the Antora Camel UI theme (antora-ui-camel)
  • Fetch the doc sources from Camel and Camel K github reporsitories
  • Build the website content using Hugo

You can do all of this with one single command:

$ mvn package

The whole process takes up to five minutes (time to grab some coffee!)

When the build is finished you should see the generated website in the public directory.

Rebuild website

When rebuilding the website you can optimize the build process as some of the steps are only required for a fresh build from scratch. You can skip the ui theme rendering (unless you have changes in the theme itself).

$ mvn package -Dskip.theme

This should save you some minutes in the build process. You can find the updated website content in the public directory.

Clean build

When rebuilding the website the process uses some cached content (e.g. the fetched doc sources for Camel and Camel K or the Antora ui theme). If you want to start from scratch for some reason you can simply add the clean operation to the build which removes all generated sources in the project first.

$ mvn clean package

Of course this then takes some more time than an optimized rebuild (time to grab another coffee!).