This repository is the source of the documentation website at https://akosdudas.github.io/automated-homework-evaluation.
Pre-requisites: Docker, Visual Studio Code, Remote Development extension
- Start VS Code open the repository inside a container:
- Run command (Ctrl-Shift-P or F1)
Remote-Containers: Open Folder in Container...
and browse the repository folder. - Or open the repository root folder and follow popup instructions to "Re-open folder in container."
- Run command (Ctrl-Shift-P or F1)
- Open a new Terminal and execute command
mkdocs serve
.
Pre-requisites: Docker
- Open a Powershell console to the repository root
docker run -it --rm -p 8000:8000 -v ${PWD}:/docs squidfunk/mkdocs-material:7.3.6
- Open http://localhost:8000 in a browser to view the live content.
Pre-requisites: Python 3
- Install package using
pip install mkdocs-material==7.3.6
- Start
mkdocs serve
in the repository root