gatelineAPI reference
interface SchedulerConfig {
    dispatcher: Dispatcher;
    frameworkPrefix?: string;
    identity: Identity;
    log?: (line: string) => void;
    now?: () => Date;
    push?: boolean;
    registry: null | Registry;
    repoDir: string;
    sweepTimeoutMs?: number;
}

Properties

dispatcher: Dispatcher
frameworkPrefix?: string

Override the .gateline default when this repo was integrated with a custom gateline init --prefix (#95) — otherwise auto-detected.

identity: Identity
log?: (line: string) => void
now?: () => Date
push?: boolean

Push every sweep commit to origin (hosted mode).

registry: null | Registry
repoDir: string
sweepTimeoutMs?: number

Dispatch wall clock before the sweep job is killed (default 30 min).