| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- .. _develop_builddoc:
- Build Nuclei SDK Documentation
- ==============================
- In Nuclei SDK, we use Sphinx and restructured text as documentation tool.
- Here we only provide steps to build sphinx documentation in Linux environment.
- Install Tools
- -------------
- To build this the documentation, you need to have these tools installed.
- * Python3
- * Python Pip tool
- Then you can use the pip tool to install extra python packages required to
- build the documentation.
- .. code-block:: shell
- pip install -r doc/requirements.txt
- Build The Documentation
- -----------------------
- Then you can build the documentation using the following command:
- .. code-block:: shell
- # cd to document folder
- cd doc
- # Build Sphinx documentation
- make html
- The documentation will be generated in *doc/build/html* folder.
- You can open the *doc/build/html/index.html* in your browser to view
- the details.
|