Source code for app.asgi

"""App factory for creating a new app instance."""

from litestar import Litestar

__all__ = ("app_factory",)


[docs] def app_factory() -> Litestar: """Construct app with some defaults.""" from litestar import Litestar from app.applets.core.helpers import generate_app_config from app.config.app import openapi_config, structlog_plugin, template_config, vite_plugin from app.config.routes import route_handlers return Litestar( # - Config plugins=[structlog_plugin, vite_plugin], # ! TODO: when granian plugin is enabled, and we make an http request, it closes with no logs. # plugins=[structlog_plugin, vite_plugin, granian_plugin], openapi_config=openapi_config, template_config=template_config, # - Core route_handlers=route_handlers, # - Hooks on_app_init=[generate_app_config], )
app = app_factory()