node-oracledb/doc
Christopher Jones ffd4f2c160 accessTokenCallback removal and error mapping 2023-02-21 17:53:18 +11:00
..
images Add node-oracledb architecture diagram and description 2020-02-16 11:18:39 +11:00
src accessTokenCallback removal and error mapping 2023-02-21 17:53:18 +11:00
Makefile Use new documentation system 2023-02-21 14:53:53 +11:00
README.md Use new documentation system 2023-02-21 14:53:53 +11:00
api.md Merge doc updates from v5.5.x branch 2023-02-21 14:59:40 +11:00
requirements.txt Use new documentation system 2023-02-21 14:53:53 +11:00

README.md

Sphinx is used to generate the HTML for the node-oracledb documentation.

The generated node-oracledb documentation is at https://node-oracledb.readthedocs.io/

This directory contains the documentation source. It is written using reST (re-Structured Text). The source files are processed using Sphinx and can be turned into HTML, PDF or ePub documentation.

If you wish to build documentation yourself, install Sphinx and the Read the Docs theme. Sphinx is available on many Linux distributions as a pre-built package. You can also install Sphinx and the Read the Docs theme using the Python package manager "pip", for example::

python -m pip install -r requirements.txt

For more information on Sphinx, please visit this page:

http://www.sphinx-doc.org

Once Sphinx is installed, the supplied Makefile can be used to build the different targets, for example to build the HTML documentation, run::

make

To make ePub documentation, run::

make epub

To make PDF documentation, run::

make pdf

The program latexmk may be required by Sphinx to generate PDF output.