Add dcae-cli and component-json-schemas projects
[dcaegen2/platform/cli.git] / dcae-cli / docs / README.md
1 # Documentation build instructions
2
3 The autodoc extension doesn't regenerate the `dcae_cli` package files in the build directory. They can be recreated via:
4
5 ```
6 sphinx-apidoc -o source/apidoc/ ../dcae_cli/
7 ```
8
9 Then the HTML can be rebuilt via:
10
11 ```
12 make clean
13 make html
14 ```
15
16 The makefile was initially created via:
17
18 ```
19 sphinx-quickstart
20 ```