@suluk/deploy - v0.1.4
    Preparing search index...

    Interface DeployPlan

    @suluk/deploy — ship a Suluk app behind a SWAPPABLE target interface. A DeployProvider turns the app into the files + ordered steps that deploy it; the host (the vscode extension) runs the steps in a terminal after the user authenticates. Cloudflare is the first provider (Workers + D1 + static assets) — an adapter, since the stack is already Cloudflare-native (Hono=Workers, sqlite-core=D1, frontend=assets). CANDIDATE.

    interface DeployPlan {
        provider: string;
        files: DeployFile[];
        steps: DeployStep[];
        notes: string[];
    }
    Index

    Properties

    provider: string
    files: DeployFile[]
    steps: DeployStep[]
    notes: string[]

    Human-facing notes (auth, manual fill-ins, caveats).