drupflare/drangler - v0.1.0
    Preparing search index...

    Interface SshTarget

    Where the VPS half of a migration connects, and how.

    interface SshTarget {
        host: string;
        identity?: string;
        port: number | null;
        root: string;
        user: string | null;
    }
    Index
    host: string
    identity?: string

    private key path, passed as -i; never read by drangler itself

    port: number | null
    root: string

    the Drupal document root on that host

    user: string | null