@runloop/api-client - v1.4.0
    Preparing search index...

    Interface RepositoryManifestView

    The repository manifest contains container configuration and workspace definitions for a repository.

    interface RepositoryManifestView {
        container_config: ContainerConfig;
        languages: Language[];
        workspaces: RepositoryManifestView.Workspace[];
        containerized_services?:
            | RepositoryManifestView.ContainerizedService[]
            | null;
        env_vars?: { [key: string]: string }
        | null;
        required_env_vars?: string[] | null;
    }
    Index

    Properties

    container_config: ContainerConfig

    Container configuration specifying the base image and setup commands.

    languages: Language[]

    List of required languages found in Repository.

    List of workspaces within the repository. Each workspace represents a buildable unit of code.

    containerized_services?: RepositoryManifestView.ContainerizedService[] | null

    List of discovered ContainerizedServices. Services can be explicitly started when creating a Devbox.

    env_vars?: { [key: string]: string } | null

    Qualified environment variables and values that should be set for this repository to run correctly.

    required_env_vars?: string[] | null

    Missing environment variables that (may) be required for this repository to run correctly.