manage module

If you want to include API docs for the manage module using automodule, enable the autodoc extension in conf.py:

In conf.py add:

extensions = [
    'sphinx.ext.autodoc',
    # other extensions...
]

Then you can use:

.. automodule:: manage
   :members:
   :undoc-members:
   :show-inheritance:

For now, this placeholder describes the purpose of the manage module:

  • Coordinates CLI and admin commands

  • Boots background tasks for uploads and scheduled jobs

  • Contains small helpers used by the webserver and the SDK