This repository contains the documentation of OpenCVE, feel free to contribute.
On linux
virtualenv venv -p python3.9
source venv/bin/activate
(venv) pip install -r requirements.txt
On windows
virtualenv venv -p python3.9
Set-ExecutionPolicy Unrestricted -Scope Process
venv\Scripts\activate
(venv) pip install -r requirements.txt
To run the builtin development server:
(venv) mkdocs serve
To build the documentation:
(venv) mkdocs build