This is the repository for the documentation of FusionResolveIT. It uses MkDocs.
This document is intended to people who want to contribute to the documentation. For more information, please see the official links.
Make sure to have Python 3.3+ installed on your system.
Install the dependencies with:
$ make install
And start the development server:
$ make start
ℹ️ If you are on windows and do not use wsl you can run these commands as make is not available natively:
Install the dependencies with:
$ python -m venv venv
$ venv\Scripts\activate; pip install -r requirements.txt
And start the development server:
$ venv\Scripts\activate; mkdocs serve