├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE.txt ├── Nodes └── Terminal.py ├── README.md ├── README_en.md ├── __init__.py ├── config.json ├── pyproject.toml ├── requirements.txt ├── setting.png └── web ├── Terminal.js ├── Util.js └── hot_reload.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | .github/ -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Nodes/Terminal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/Nodes/Terminal.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/README.md -------------------------------------------------------------------------------- /README_en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/README_en.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/__init__.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/config.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | watchdog 2 | -------------------------------------------------------------------------------- /setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/setting.png -------------------------------------------------------------------------------- /web/Terminal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/web/Terminal.js -------------------------------------------------------------------------------- /web/Util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/web/Util.js -------------------------------------------------------------------------------- /web/hot_reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LAOGOU-666/ComfyUI-LG_HotReload/HEAD/web/hot_reload.js --------------------------------------------------------------------------------