This repository holds a proof of concept for the documentation for the Apache AGE project. It is a work in progress.
- install requirements
sudo apt install python3 virtualenv
- clone this repository
- navigate to the root of this repository
- create a python virtual environment
virtualenv -p python3 venv
- activate the virtual environment
source venv/bin/activate
- install the python requirements
pip install -r requirements.txt
- build the documentation
-
from
⚠️ remote branchessphinx-multiversion docs build/html
The documentation should now be in the
build/html
folder, with a subfolder per remote branch (version). -
from the current folder
sphinx-build docs build/html
The documentation for the current local branch should now be in the
build/html
folder (no subfolders).
-
-
navigate to the root of this repository if not there yet
-
activate the virtual environment if it is not yet active
source venv/bin/activate
- build the documentation
-
from
⚠️ remote branchessphinx-multiversion docs build/html
The documentation should now be in the
build/html
folder, with a subfolder per remote branch (version). -
from the current folder
sphinx-build docs build/html
The updated documentation for the current local branch should now be in the
build/html
folder (no subfolders).
-