3
0
Fork 0

Add docs for handlers, app handler

This commit is contained in:
Lance Edgar 2023-11-24 15:49:57 -06:00
parent 6b110e567a
commit 4a7729a702
13 changed files with 153 additions and 14 deletions

View file

@ -25,9 +25,9 @@ Glossary
virtual environment.
app handler
Python object representing the core of the :term:`app`. There is
normally just one "global" app handler, which is an instance of
:class:`~wuttjamaican.app.AppHandler`.
Python object representing the core :term:`handler` for the
:term:`app`. There is normally just one "global" app handler;
see also :doc:`narr/handlers/app`.
app name
Code-friendly name for the underlying app/config system
@ -85,6 +85,14 @@ Glossary
.. _Python Packaging User Guide: https://packaging.python.org/en/latest/specifications/entry-points/
handler
Similar to a "plugin" concept but only *one* handler may be used
for a given purpose. See also :doc:`narr/handlers/index`.
package
Generally refers to a proper Python package, i.e. a collection of
modules etc. which is installed via ``pip``.
settings table
Table in the :term:`app database` which is used to store
:term:`config settings<config setting>`.