Fixed typos
2 files changed
tree: 133dd18dcda30bda137a174d657ddfc5df78e2ec
  1. source/
  2. .gitignore
  3. .gitmodules
  4. _config.yml
  5. extract_celix_docs.sh
  6. Gemfile
  7. Gemfile.lock
  8. LICENSE
  9. NOTICE
  10. publish.sh
  11. README.md
  12. run.sh
  13. run_incremental.sh
README.md

Apache Celix website

The updated Celix website is still under construction and not live yet.

This is source code for the website of Apache Celix, hosted at:

https://celix.apache.org/

Repository structure

This repository uses 2 branches for serving the website.

  • The master branch, which contains all the sources for the website.
  • The asf-site branch, which contains the generated website being used for the Celix website.

When contributing patches, apply them to the master branch. Jenkins will then regenerate the website and commit the changes to the asf-site branch.

Content Management System

The Celix website uses Jekyll as static website generator. See Jekyll for more info and for details how to install Jekyll.

Generate the website

Copy documentation dir from celix repo

  • Run git submodule init and git submodule update to retrieve the Celix sources.
  • Run ./extract_celix_docs.sh to copy the markdown files from the Celix main repository to the site repository.

Create doxygen documentation

TODO

Generate the static website

To generate the static website, execute run.sh to generate and serve the website on localhost:4000.

During development, it may be useful to run an incremental build. For this to work, execute run_incremental.sh to continuously generate and serve the website on localhost:4000.

Publish the website

Jenkins is used for generating the website and committing the generated site to the asf-site branch.