age-website
age-website copied to clipboard
AGE Project
Apache AGE website
is a leading multi-model graph database
Graph Processing & Analytics for Relational Databases
This repository provides the source for the main website of The Apache AGE.
The link below contains the following Apache AGE project:
Introduction
- The
masterbranch contains the source code of the latest version of the documentation. vX.Y.ZBranches contain the source code of the documentation of releases.- The
asf-sitebranch contains the static webpage code, as well as the build static version of the documenation (in thedocsfolder). Thedocsfolder should not be manually updated. new-webbranch is where website development work is done.
Build the documentation locally (first time)
- Install requirements (the latex and dvisvgm commands are required to display math)
- MacOS
brew install python3 virtualenv texlive
- Ubuntu
sudo apt install python3 virtualenv texlive-latex-base texlive-latex-extra texlive-extra-utils
- Clone this repository
- Navigate to the root of the 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 :warning: remote branches
sphinx-multiversion docs build/htmlThe documentation should now be in the
build/htmlfolder, with a subfolder per remote branch (version). -
From the current folder
sphinx-build docs build/html/currentThe documentation for the current local branch should now be in the
build/html/currentfolder (no subfolders).
-
Build documentation locally (after initial setup)
-
Navigate to the root of the repository
-
Activate the virtual environment if not yet active
source venv/bin/activate
- Build the documentation
-
From :warning: remote branches
sphinx-multiversion docs build/htmlThe documentation should now be in the
build/htmlfolder, with a subfolder per remote branch (version). -
From the current folder
sphinx-build docs build/html/currentThe updated documentation for the current local branch should now be in the
build/html/currentfolder (no subfolders).
-