Beignet API reference
    Preparing search index...

    Variable inngestProviderConst

    inngestProvider: ServiceProvider<
        unknown,
        ZodObject<
            { APP_NAME: ZodDefault<ZodString>; EVENT_KEY: ZodOptional<ZodString> },
            $strip,
        >,
        { inngest: InngestPort; jobs: JobDispatcherPort },
    > = ...

    Inngest provider that extends ports with background job and event capabilities.

    This provider creates an Inngest client and exposes it through the ports system. It contributes a canonical jobs port for app code and keeps the raw Inngest client available as an escape hatch through ports.inngest.client.

    Configuration via environment variables:

    • INNGEST_APP_NAME: Application name (optional, default: "beignet-app")
    • INNGEST_EVENT_KEY: Event key for Inngest cloud (optional)
    const server = await createNextServer({
    ports: basePorts,
    providers: [inngestProvider],
    // ...
    });