From 37b3e5b2a39432b729ce8666f6c01fadf5baeea4 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Fri, 14 Jun 2024 20:56:38 -0400 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 32d450840..5bd78d80a 100644 --- a/README.md +++ b/README.md @@ -8,15 +8,18 @@ This repo is an experiment trying to migrate ComfyUI's front-end code to TypeScr ## Tasks -- Gradually migrate the code to TypeScript in this repo, while monitoring the change +- [x] Gradually migrate the code to TypeScript in this repo, while monitoring the change in ComfyUI's front-end code. -- Figure out a way to reliably embed compiled code to ComfyUI distribution. +- [ ] Using zod schema to add static/runtime type check for core structures. +- [ ] Figure out a way to reliably embed compiled code to ComfyUI distribution. - It can be a bot regularly pulling the new changes in the front-end repo and submitting them to the main repo. (Chrome does a similar process for Chrome devtools, which is hosted in a separate repo.) ## Development +Currently the dev server does not work as the ws runs on root path '/', and all api endpoints are all defined on '/'. There might need to be some API changes before dev server can work. + - Run `npm install` to install the necessary packages - Start local ComfyUI backend at `localhost:8188` - Run `npm run dev` to start the dev server