1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
``mongo-c-driver`` Development Documentation
============================================
These pages detail information related to the development of the mongo-c-driver
project. These are for project developers, not end users of the C driver
library.
To view these pages in their rendered HTML form, run the following command from
the mongo-c-driver project directory:
.. code-block:: console
$ make -C docs/dev serve
.. rubric:: Contents:
- :doc:`Releasing the MongoDB C Driver <releasing>` - Instructions on performing
a release of the C driver libaries.
.. toctree::
debian
earthly
deps
files
.. Add the `releasing` page to a hidden toctree. We don't want to include it
directly in a visible toctree because the top-level sections would render inline
as top-level links, which we do not want.
.. toctree::
:hidden:
releasing
Indices and tables
==================
* :ref:`genindex`
* :ref:`search`
.. Hidden, because it is not currently relevant to this project:
.. * :ref:`modindex`
|