@valon-technologies/gestalt
    Preparing search index...

    Interface StartHostedAppRequest

    StartHostedAppRequest describes the app process to launch inside a runtime session. The runtime backend owns allocation and injection of the app's listener endpoint and returns a host-reachable dial target in the HostedApp response.

    interface StartHostedAppRequest {
        sessionId: string;
        appName: string;
        command: string;
        args: string[];
        env: { [key: string]: string };
        allowedHosts: string[];
        defaultAction: string;
        hostBinary: string;
        workdir: string;
    }
    Index

    Properties

    sessionId: string
    appName: string
    command: string
    args: string[]
    env: { [key: string]: string }
    allowedHosts: string[]
    defaultAction: string
    hostBinary: string
    workdir: string