@suluk/provision - v0.2.0
    Preparing search index...

    Interface ProvisionApp

    interface ProvisionApp {
        config: ProvisionConfig;
        brokers: Record<string, Broker>;
        store: StateStore;
        sink?: BindingSink;
        migrations?: MigrationStore;
    }
    Index

    Properties

    the desired instances (+ pruneOrphans default).

    brokers: Record<string, Broker>

    service id → broker (the executors apply dispatches to).

    store: StateStore

    the journal (defaults to a file store in a real config).

    where bound credentials land (defaults to the @suluk/env sink). Optional.

    migrations?: MigrationStore

    the committed migration history — enables generate + migrate (the drizzle-style repeatable path). Optional; a real config points it at fileMigrationStore("provision").