This is the repository for the Apache ActiveMQ website, hosted at activemq.apache.org.
This branch of the repo contains the source files that are used to generate the HTML that ultimately gets pushed to the site. When a commit is made to the branch, a Jekyll build is automatically performed in CI and the generated site output committed back to the asf-site
branch within the output
directory. The generated content on asf-site
is then automatically published to the live web server at https://activemq.apache.org/.
See the Contributing section below for more.
Before building the site you will need to install Jekyll (and Bundler). The Jekyll site has installation instructions to help get you started.
You can build (from the src
directory, to the _site
output directory) and serve the site locally using Jekyll to test changes you have made or are making:
./serve.sh
Alternatively, to just build the site, run:
./build.sh
If for some reason you need to clear the metadata/cache used to support the build process, and the build output, you can run: rm -rf src/.jekyll-* rm -rf _site
If you would like to make a change to the ActiveMQ site:
- Fork the Apache ActiveMQ site repository to your github account.
- Create a new branch from
main
- Test your changes locally
- Add commit(s) to your branch
- Open a pull request on the github mirror
- An ActiveMQ committer will review and merge your changes
If you are a committer, do the following:
- Clone
https://gitbox.apache.org/repos/asf/activemq-website.git
. - Update the
main
branch with your (or a Pull Request's) changes. - Run
serve.sh
orbuild.sh
and verify the updates look appropriate. - Push the changes to the ASF remote.
- The CI build will run and commit the generated site to the
asf-site
branch automatically within a few minutes, from where it will also be published. CI build status mails go to the commits list. - Verify the updated website works as expected by browsing it.