Interface BackendStatus

Result of detecting a backend's availability.

interface BackendStatus {
    status: SetupStatus;
    url?: string;
    containerName?: string;
    source?: "manual" | "docker-local" | "env-var" | "cloud";
    error?: string;
}

Properties

status: SetupStatus

Current status of the backend.

url?: string

URL/connection string if the backend is reachable.

containerName?: string

Docker container name if running via Docker.

source?: "manual" | "docker-local" | "env-var" | "cloud"

How the backend was discovered.

error?: string

Error message if status is 'error' or 'no_docker'.