This is a document specially prepared for developers, explaining some special development details.Installation
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
- F12 -> Application -> IndexedDB -> delete current indexdb
- 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)
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:
- When switching to a non-main/beta branch, additional .gitignore logic is automatically added to ignore the "/dist" folder.
-
npm run dev starts the project;
-
If the dist directory currently exists, please delete the dist directory or keep the dist directory empty;
-
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.
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);