mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 02:15:17 +00:00
7f469203b7
* setup ui unit tests * Refactoring, adding connections * Few tweaks * Fix type * Add general test * Refactored and extended test * move to describe * for groups * wip group nodes * Relink nodes Fixed widget values Convert to nodes * Reconnect on convert back * add via node menu + canvas refactor * Add ws event handling * fix using wrong node on widget serialize * allow reroute pipe fix control_after_generate configure * allow multiple images * Add test for converted widgets on missing nodes + fix crash * tidy * mores tests + refactor * throw earlier to get less confusing error * support outputs * more test * add ci action * use lts node * Fix? * Prevent connecting non matching combos * update * accidently removed npm i * Disable logging extension * fix naming allow control_after_generate custom name allow convert from reroutes * group node tests * Add executing info, custom node icon Tidy * internal reroute just works * Fix crash on virtual nodes e.g. note * Save group nodes to templates * Fix template nodes not being stored * Fix aborting convert * tidy * Fix reconnecting output links on convert to group * Fix links on convert to nodes * Handle missing internal nodes * Trigger callback on text change * Apply value on connect * Fix converted widgets not reconnecting * Group node updates - persist internal ids in current session - copy widget values when converting to nodes - fix issue serializing converted inputs * Resolve issue with sanitized node name * Fix internal id * allow outputs to be used internally and externally * order widgets on group node various fixes * fix imageupload widget requiring a specific name * groupnode imageupload test give widget unique name * Fix issue with external node links * Add VAE model * Fix internal node id check * fix potential crash * wip widget input support * more wip group widget inputs * Group node refactor Support for primitives/converted widgets * Fix convert to nodes with internal reroutes * fix applying primitive * Fix control widget values * fix test
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
const { spawn } = require("child_process");
|
|
const { resolve } = require("path");
|
|
const { existsSync, mkdirSync, writeFileSync } = require("fs");
|
|
const http = require("http");
|
|
|
|
async function setup() {
|
|
// Wait up to 30s for it to start
|
|
let success = false;
|
|
let child;
|
|
for (let i = 0; i < 30; i++) {
|
|
try {
|
|
await new Promise((res, rej) => {
|
|
http
|
|
.get("http://127.0.0.1:8188/object_info", (resp) => {
|
|
let data = "";
|
|
resp.on("data", (chunk) => {
|
|
data += chunk;
|
|
});
|
|
resp.on("end", () => {
|
|
// Modify the response data to add some checkpoints
|
|
const objectInfo = JSON.parse(data);
|
|
objectInfo.CheckpointLoaderSimple.input.required.ckpt_name[0] = ["model1.safetensors", "model2.ckpt"];
|
|
objectInfo.VAELoader.input.required.vae_name[0] = ["vae1.safetensors", "vae2.ckpt"];
|
|
|
|
data = JSON.stringify(objectInfo, undefined, "\t");
|
|
|
|
const outDir = resolve("./data");
|
|
if (!existsSync(outDir)) {
|
|
mkdirSync(outDir);
|
|
}
|
|
|
|
const outPath = resolve(outDir, "object_info.json");
|
|
console.log(`Writing ${Object.keys(objectInfo).length} nodes to ${outPath}`);
|
|
writeFileSync(outPath, data, {
|
|
encoding: "utf8",
|
|
});
|
|
res();
|
|
});
|
|
})
|
|
.on("error", rej);
|
|
});
|
|
success = true;
|
|
break;
|
|
} catch (error) {
|
|
console.log(i + "/30", error);
|
|
if (i === 0) {
|
|
// Start the server on first iteration if it fails to connect
|
|
console.log("Starting ComfyUI server...");
|
|
|
|
let python = resolve("../../python_embeded/python.exe");
|
|
let args;
|
|
let cwd;
|
|
if (existsSync(python)) {
|
|
args = ["-s", "ComfyUI/main.py"];
|
|
cwd = "../..";
|
|
} else {
|
|
python = "python";
|
|
args = ["main.py"];
|
|
cwd = "..";
|
|
}
|
|
args.push("--cpu");
|
|
console.log(python, ...args);
|
|
child = spawn(python, args, { cwd });
|
|
child.on("error", (err) => {
|
|
console.log(`Server error (${err})`);
|
|
i = 30;
|
|
});
|
|
child.on("exit", (code) => {
|
|
if (!success) {
|
|
console.log(`Server exited (${code})`);
|
|
i = 30;
|
|
}
|
|
});
|
|
}
|
|
await new Promise((r) => {
|
|
setTimeout(r, 1000);
|
|
});
|
|
}
|
|
}
|
|
|
|
child?.kill();
|
|
|
|
if (!success) {
|
|
throw new Error("Waiting for server failed...");
|
|
}
|
|
}
|
|
|
|
setup(); |