Root of sphinx-build files here for the Longturn Documentation Project
    https://github.com/orgs/longturn/projects/1

To create a local test build run these commands from the source directory.

LINUX::

    cd build
    sudo apt-get install virtualenv     # Only required the first time
    python -m virtualenv venv
    source venv/bin/activate
    pip install -r ../docs/requirements.txt

    sphinx-build -b html ../docs ./docs/

    and then open build/docs/index.html in your browser of choice

WINDOWS::

    cd build-vs
    pip install virtualenv             # Only required the first time
    python -m virtualenv venv
    venv\Scripts\Activate.ps1          # or .bat for command prompt
    pip install -r ..\docs\requirements.txt

    sphinx-build -b html ..\docs docs\

    and then open build-vs\docs\index.html in your browser of choice

MACOS:

    cd build
    python -m venv venv
    source venv/bin/activate
    pip install -r ../docs/requirements.txt

    sphinx-build -b html ../docs ./docs/

    and then open build/docs/index.html in your browser of choice
