Skip to content

pdpotter/age_docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Apache AGE documentation

This repository holds a proof of concept for the documentation for the Apache AGE project. It is a work in progress.

Build the documentation (first time)

  • 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 branches

      sphinx-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).

Build documentation (after initial setup)

  • 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 branches

      sphinx-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).