cacert-codedocs/source/building.rst
Jan Dittberner 62079ed0ca Improve repository links
- add extlinks configuration for cacertgit and github
- use extlinks for repository links
- explain the relationship of the CAcert and Github repositories
- update the structure.txt to the current release branch
2018-10-28 10:14:12 +01:00

3 KiB

Building the documentation

This documentation is maintained as a set of ReStructuredText documents and uses Sphinx to build HTML formatted representations of the documents.

Getting the documentation source

The documentation is available from the git repository cacert-codedocs on git.cacert.org. You can browse the cacert-codedocs via gitweb.

You can clone the repository anonymously by executing:

git clone git://git.cacert.org/cacert-codedocs.git

If you want to contribute to the documentation please ask git-admin@cacert.org to setup a user in the group git-doc on git.cacert.org for you. You will have to provide an SSH public key (either RSA with at least 2048 Bits modulus or an ECDSA or ED25519 key with similar strength) with your request.

If you have a user in the git-doc group you can clone the repository by executing:

git clone ssh://<username>@git.cacert.org/var/cache/git/cacert-codedocs.git

Note

replace <username> with your actual username

Building with Sphinx

To build this documentation you need a Python 3 installation. To isolate the documentation build from your system Python 3 packages using a virtual environment is recommended. Management of the virtual environment can be done with pipenv as described below.

Python 3 installation instructions can be found on the Python website.

Building the documentation on a Debian system

The following example shows how to build the documentation on a Debian system:

# Install required operating system packages
sudo apt-get install python3 python3-pip make
# install pipenv
python3 -m pip install -U pip pipenv
# use pipenv to install require dependencies into a virtual environment
pipenv install
# Build the documentation
pipenv run make html

Note

The above commands should be run from the root directory of a git clone of the cacert-codedocs git repository. The result of the make exection will be available in the build/html/ directory directory.

Continuous integration

If changes are pushed to the cacert-codedocs git repository on git.cacert.org a Jenkins Job is automatically triggered. If the documentation is built successfully it can be viewed in the docs/_build/html directory of the Job's workspace. You may open index.html to browse the documentation (there are some JavaScript and SVG glitches due to Content-Security-Policy settings).

If the documentation build is successful the result is pushed to a webserver document root on infradocs:systems/webstatic and is publicly available at https://codedocs.cacert.org/.