This is the repository for the website of the "Summer School for Software Engineering in Robotics" series.
To build the webpages locally, the environment needs to be setup by running the following (assuming the repo is already cloned).
cd docs/
python3 -m venv venv
source venv/bin/activate # (Or your OS specific equivalent)
pip install -r requirements.txtAfterwards to build the pages run the following from the docs folder:
# Make sure the Python environment is sourced
# Linux: source venv/bin/activate
# For a normal build
sphinx-build source build
# For a build which, updates the TOC/Navigation sidebar
sphinx-build source build -Ea