feat: add temporal run engine integration
This commit is contained in:
@@ -60,6 +60,7 @@ describe("doctor", () => {
|
||||
DATABASE_URL: "postgres://devflow:devflow@127.0.0.1:55432/devflow",
|
||||
WORKSPACE_ROOT: process.cwd(),
|
||||
LOG_LEVEL: "info",
|
||||
TEMPORAL_ADDRESS: "localhost:7233",
|
||||
},
|
||||
nodeVersion: "22.11.0",
|
||||
});
|
||||
@@ -114,6 +115,7 @@ describe("doctor", () => {
|
||||
DATABASE_URL: "postgres://devflow:devflow@127.0.0.1:55432/devflow",
|
||||
WORKSPACE_ROOT: process.cwd(),
|
||||
LOG_LEVEL: "info",
|
||||
TEMPORAL_ADDRESS: "localhost:7233",
|
||||
},
|
||||
nodeVersion: "22.11.0",
|
||||
});
|
||||
|
||||
@@ -259,7 +259,11 @@ async function checkWorkspaceRoot(config?: Config, configError?: unknown): Promi
|
||||
function checkConfig(config?: Config, configError?: unknown): DoctorResult {
|
||||
return config
|
||||
? pass("config", "valid", ".env resolved to a valid Config")
|
||||
: fail("config", errorDetail(configError), "Set DATABASE_URL, WORKSPACE_ROOT, and LOG_LEVEL");
|
||||
: fail(
|
||||
"config",
|
||||
errorDetail(configError),
|
||||
"Set DATABASE_URL, WORKSPACE_ROOT, LOG_LEVEL, and TEMPORAL_ADDRESS",
|
||||
);
|
||||
}
|
||||
|
||||
async function checkOptionalBinary(
|
||||
|
||||
Reference in New Issue
Block a user