@pwngh/economy-lab
    Preparing search index...

    Type Alias PreflightIssue

    One preflight finding. Severity 'error' is exactly what openPorts refuses; 'warning' is advisory and blocks nothing.

    type PreflightIssue = {
        code: string;
        message: string;
        path: string;
        severity: "error" | "warning";
    }
    Index
    code: string

    Stable machine code, e.g. 'secret.missing' or 'port.absent'.

    message: string

    Human-readable, states the fix.

    path: string

    The env name or port slot at fault, e.g. 'DATABASE_URL' or 'dispatcher'.

    severity: "error" | "warning"