├── .gitignore ├── .signore ├── CHANGELOG.md ├── dev ├── publish.yaml ├── readme.md ├── scripts └── core.bash └── src ├── images ├── agent │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── pkg │ │ ├── comfyui │ │ ├── api.go │ │ └── type.go │ │ ├── config │ │ └── config.go │ │ ├── log │ │ └── log.go │ │ ├── server │ │ ├── progress.go │ │ ├── proxy.go │ │ ├── router.go │ │ ├── run.go │ │ └── wrapper.go │ │ ├── store │ │ ├── fs.go │ │ ├── progress.go │ │ └── store.go │ │ ├── utils │ │ └── http.go │ │ └── watchdog │ │ ├── watch.go │ │ └── watch_test.go ├── base │ ├── v1 │ │ ├── Dockerfile │ │ ├── built-in │ │ │ └── extra_model_paths.yaml │ │ ├── entrypoint.bash │ │ └── init.bash │ ├── v2 │ │ ├── Dockerfile │ │ ├── built-in │ │ │ └── custom_nodes │ │ │ │ └── ComfyUI_AliyunFC │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ └── js │ │ │ │ └── fc.js │ │ ├── entrypoint.bash │ │ └── init.bash │ ├── v3 │ │ ├── Dockerfile │ │ ├── entrypoint.bash │ │ └── init.bash │ ├── v4 │ │ ├── Dockerfile │ │ ├── built-in │ │ │ ├── custom_nodes │ │ │ │ └── ComfyUI_AliyunFC │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ └── js │ │ │ │ │ └── fc.js │ │ │ └── extra_model_paths.yaml │ │ ├── entrypoint.bash │ │ └── init.bash │ ├── v5 │ │ ├── Dockerfile │ │ ├── built-in │ │ │ ├── custom_nodes │ │ │ │ └── ComfyUI_AliyunFC │ │ │ │ │ ├── __init__.py │ │ │ │ │ ├── __pycache__ │ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ │ └── js │ │ │ │ │ └── fc.js │ │ │ └── extra_model_paths.yaml │ │ ├── entrypoint.bash │ │ └── init.bash │ └── v6 │ │ ├── Dockerfile │ │ ├── built-in │ │ ├── custom_nodes │ │ │ └── ComfyUI_AliyunFC │ │ │ │ ├── __init__.py │ │ │ │ ├── __pycache__ │ │ │ │ └── __init__.cpython-310.pyc │ │ │ │ └── js │ │ │ │ └── fc.js │ │ └── extra_model_paths.yaml │ │ ├── entrypoint.bash │ │ └── init.bash ├── board │ ├── v1 │ │ └── Dockerfile │ └── v2 │ │ └── Dockerfile ├── book │ ├── v2 │ │ ├── Dockerfile │ │ └── built-in │ │ │ └── AI绘本漫画.json │ ├── v3 │ │ ├── Dockerfile │ │ └── built-in │ │ │ └── 1226AI绘本简洁版本-simple.json │ └── v5 │ │ ├── Dockerfile │ │ └── built-in │ │ └── 最快版0102ComfyUI_temp_vtnhc_00096.json ├── clay │ ├── v1 │ │ ├── Dockerfile │ │ └── built-in │ │ │ └── input │ │ │ └── 梵高.jpeg │ └── v2 │ │ └── Dockerfile ├── couple_photo │ └── v1 │ │ └── Dockerfile ├── flur │ └── v2 │ │ ├── Dockerfile │ │ └── built-in │ │ └── 一键生成可爱毛绒玩具.json ├── flux │ └── v1 │ │ └── Dockerfile ├── flux_pulid │ └── v1 │ │ └── Dockerfile └── ice │ └── v1 │ └── Dockerfile ├── proxy └── main.go ├── readme.md └── s.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | nas 2 | .cache -------------------------------------------------------------------------------- /.signore: -------------------------------------------------------------------------------- 1 | nas 2 | .cache -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/dev -------------------------------------------------------------------------------- /publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/publish.yaml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/readme.md -------------------------------------------------------------------------------- /scripts/core.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/scripts/core.bash -------------------------------------------------------------------------------- /src/images/agent/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/go.mod -------------------------------------------------------------------------------- /src/images/agent/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/go.sum -------------------------------------------------------------------------------- /src/images/agent/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/main.go -------------------------------------------------------------------------------- /src/images/agent/pkg/comfyui/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/comfyui/api.go -------------------------------------------------------------------------------- /src/images/agent/pkg/comfyui/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/comfyui/type.go -------------------------------------------------------------------------------- /src/images/agent/pkg/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/config/config.go -------------------------------------------------------------------------------- /src/images/agent/pkg/log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/log/log.go -------------------------------------------------------------------------------- /src/images/agent/pkg/server/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/server/progress.go -------------------------------------------------------------------------------- /src/images/agent/pkg/server/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/server/proxy.go -------------------------------------------------------------------------------- /src/images/agent/pkg/server/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/server/router.go -------------------------------------------------------------------------------- /src/images/agent/pkg/server/run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/server/run.go -------------------------------------------------------------------------------- /src/images/agent/pkg/server/wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/server/wrapper.go -------------------------------------------------------------------------------- /src/images/agent/pkg/store/fs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/store/fs.go -------------------------------------------------------------------------------- /src/images/agent/pkg/store/progress.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/store/progress.go -------------------------------------------------------------------------------- /src/images/agent/pkg/store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/store/store.go -------------------------------------------------------------------------------- /src/images/agent/pkg/utils/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/utils/http.go -------------------------------------------------------------------------------- /src/images/agent/pkg/watchdog/watch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/watchdog/watch.go -------------------------------------------------------------------------------- /src/images/agent/pkg/watchdog/watch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/agent/pkg/watchdog/watch_test.go -------------------------------------------------------------------------------- /src/images/base/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v1/built-in/extra_model_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v1/built-in/extra_model_paths.yaml -------------------------------------------------------------------------------- /src/images/base/v1/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v1/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v1/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v1/init.bash -------------------------------------------------------------------------------- /src/images/base/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py -------------------------------------------------------------------------------- /src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js -------------------------------------------------------------------------------- /src/images/base/v2/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v2/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v2/init.bash -------------------------------------------------------------------------------- /src/images/base/v3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v3/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v3/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v3/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v3/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v3/init.bash -------------------------------------------------------------------------------- /src/images/base/v4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py -------------------------------------------------------------------------------- /src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js -------------------------------------------------------------------------------- /src/images/base/v4/built-in/extra_model_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/built-in/extra_model_paths.yaml -------------------------------------------------------------------------------- /src/images/base/v4/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v4/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v4/init.bash -------------------------------------------------------------------------------- /src/images/base/v5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py -------------------------------------------------------------------------------- /src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js -------------------------------------------------------------------------------- /src/images/base/v5/built-in/extra_model_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/built-in/extra_model_paths.yaml -------------------------------------------------------------------------------- /src/images/base/v5/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v5/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v5/init.bash -------------------------------------------------------------------------------- /src/images/base/v6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/Dockerfile -------------------------------------------------------------------------------- /src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/__init__.py -------------------------------------------------------------------------------- /src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/__pycache__/__init__.cpython-310.pyc -------------------------------------------------------------------------------- /src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/built-in/custom_nodes/ComfyUI_AliyunFC/js/fc.js -------------------------------------------------------------------------------- /src/images/base/v6/built-in/extra_model_paths.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/built-in/extra_model_paths.yaml -------------------------------------------------------------------------------- /src/images/base/v6/entrypoint.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/entrypoint.bash -------------------------------------------------------------------------------- /src/images/base/v6/init.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/base/v6/init.bash -------------------------------------------------------------------------------- /src/images/board/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/board/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/board/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/board/v2/Dockerfile -------------------------------------------------------------------------------- /src/images/book/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v2/Dockerfile -------------------------------------------------------------------------------- /src/images/book/v2/built-in/AI绘本漫画.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v2/built-in/AI绘本漫画.json -------------------------------------------------------------------------------- /src/images/book/v3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v3/Dockerfile -------------------------------------------------------------------------------- /src/images/book/v3/built-in/1226AI绘本简洁版本-simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v3/built-in/1226AI绘本简洁版本-simple.json -------------------------------------------------------------------------------- /src/images/book/v5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v5/Dockerfile -------------------------------------------------------------------------------- /src/images/book/v5/built-in/最快版0102ComfyUI_temp_vtnhc_00096.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/book/v5/built-in/最快版0102ComfyUI_temp_vtnhc_00096.json -------------------------------------------------------------------------------- /src/images/clay/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/clay/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/clay/v1/built-in/input/梵高.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/clay/v1/built-in/input/梵高.jpeg -------------------------------------------------------------------------------- /src/images/clay/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/clay/v2/Dockerfile -------------------------------------------------------------------------------- /src/images/couple_photo/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/couple_photo/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/flur/v2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/flur/v2/Dockerfile -------------------------------------------------------------------------------- /src/images/flur/v2/built-in/一键生成可爱毛绒玩具.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/flur/v2/built-in/一键生成可爱毛绒玩具.json -------------------------------------------------------------------------------- /src/images/flux/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/flux/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/flux_pulid/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/flux_pulid/v1/Dockerfile -------------------------------------------------------------------------------- /src/images/ice/v1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/images/ice/v1/Dockerfile -------------------------------------------------------------------------------- /src/proxy/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/proxy/main.go -------------------------------------------------------------------------------- /src/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/readme.md -------------------------------------------------------------------------------- /src/s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/fc-comfyui/HEAD/src/s.yaml --------------------------------------------------------------------------------