Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 2.79 KB

README_for_developer.md

File metadata and controls

54 lines (37 loc) · 2.79 KB

☕️ ComfyUI Workspace Manager - Comfyspace

This is a document specially prepared for developers, explaining some special development details.Installation

Clean up indexdb if it's in bad state

Make sure you have .json files under ComfyUI/comfyui-workspace-manager/db, so your indexdb data (version history, gallery image data) can be recovered after deleting

Screenshot 2024-03-12 at 12 35 24 PM
  1. F12 -> Application -> IndexedDB -> delete current indexdb
Screenshot 2024-03-12 at 12 30 48 PM
  1. If you want to recover your data like version history, gallery image data, F12 -> Application -> Local Storage -> delete WORKSPACE_INDEXDB_BACKFILL key in localstorage so your indexdb can be backedup (you don't have to do this if you only need workflows .json data)
Screenshot 2024-03-12 at 12 33 08 PM

Install custom git hooks

When running the project for the first time, it is recommended that you execute the following command to install our customized git hooks

cd ui
npm run setupGithooks

Current hooks include:

  1. When switching to a non-main/beta branch, additional .gitignore logic is automatically added to ignore the "/dist" folder.

How to use Hot Module Replacement

  1. npm run dev starts the project;

  2. If the dist directory currently exists, please delete the dist directory or keep the dist directory empty;

  3. Modify ComfyUI/web/index.html and add the following code. It should be noted that the port number in localhost:5173 needs to be consistent with the port number of the vite local service started by npm run dev.image

    import RefreshRuntime from "http://localhost:5173/@react-refresh";
    RefreshRuntime.injectIntoGlobalHook(window);
    window.$RefreshReg$ = () => {};
    window.$RefreshSig$ = () => (type) => type;
    window.__vite_plugin_react_preamble_installed__ = true;
    
    const head = document.getElementsByTagName("head")[0];
    const viteClientScript = document.createElement("script");
    viteClientScript.src = "http://localhost:5173/@vite/client";
    viteClientScript.type = "module";
    head.appendChild(viteClientScript);
    const workspaceMainScript = document.createElement("script");
    workspaceMainScript.src = "http://localhost:5173/src/main.tsx";
    workspaceMainScript.type = "module";
    head.appendChild(workspaceMainScript);