Skip to content

Litestar Integration

waku can be seamlessly integrated with Litestar using the ApplicationPlugin. To do this, set up waku as usual and then include the plugin in your Litestar application configuration.

Example

Here’s how to integrate waku with a Litestar application:

from litestar import Litestar
from waku import Application
from waku.contrib.litestar import ApplicationPlugin


def bootstrap_application() -> Application:
    # Replace with your actual waku app setup (e.g., ApplicationFactory.create)
    ...


# Create the waku application
application = bootstrap_application()

# Create the Litestar app with the waku plugin
app = Litestar(plugins=[ApplicationPlugin(application)])

In this example, the ApplicationPlugin enables waku dependency injection and module system within your Litestar application.