Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 645 Bytes

README.md

File metadata and controls

36 lines (28 loc) · 645 Bytes

OpenCVE

OpenCVE Documentation

This repository contains the documentation of OpenCVE, feel free to contribute.

Installation

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

Usage

To run the builtin development server:

(venv) mkdocs serve

To build the documentation:

(venv) mkdocs build