blob: 6ef5b21e36c1d1e0d00ee77452724cb8ba1cf53d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
## OOM Certification Service documentation
###Requirements
Python 3.x
To generate a documentation locally follow below steps.
1. Open **docs** folder in terminal
2. Install all required dependencies
```
pip install -r requirements-docs.txt
```
3. Generate local documentation
```
make html
```
After command execution the documentation will be available in **_build/html** folder.
4. Before you commit documentation changes please execute
```
make clean
```
|