├── LICENSE ├── README.md ├── js_lib └── functions.js ├── projects ├── .DS_Store ├── project_2_1 │ ├── wechat-example │ │ └── txt2img │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── data │ │ │ └── api_json.js │ │ │ ├── pages │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── logs │ │ │ │ ├── logs.js │ │ │ │ ├── logs.json │ │ │ │ ├── logs.wxml │ │ │ │ └── logs.wxss │ │ │ ├── project.config.json │ │ │ ├── project.private.config.json │ │ │ └── sitemap.json │ └── workflow_api.json ├── project_2_3 │ ├── wechat-example │ │ └── img2img │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── data │ │ │ └── api_json.js │ │ │ ├── pages │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── logs │ │ │ │ ├── logs.js │ │ │ │ ├── logs.json │ │ │ │ ├── logs.wxml │ │ │ │ └── logs.wxss │ │ │ ├── project.config.json │ │ │ ├── project.private.config.json │ │ │ ├── sitemap.json │ │ │ └── utils │ │ │ └── util.js │ └── workflow_api.json ├── project_3_5 │ ├── wechat-example │ │ └── video2video │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── pages │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── logs │ │ │ │ ├── logs.js │ │ │ │ ├── logs.json │ │ │ │ ├── logs.wxml │ │ │ │ └── logs.wxss │ │ │ ├── project.config.json │ │ │ ├── project.private.config.json │ │ │ └── sitemap.json │ ├── workflow_api.json │ └── workflow_api.py ├── project_4_1 │ ├── wechat-example │ │ └── crazy_sticker │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── pages │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── btn_download.png │ │ │ │ ├── btn_upload.png │ │ │ │ ├── completed.png │ │ │ │ ├── ele.png │ │ │ │ ├── ele_1.png │ │ │ │ ├── ele_2.png │ │ │ │ ├── ele_3.png │ │ │ │ └── ele_4.png │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── logs │ │ │ │ ├── logs.js │ │ │ │ ├── logs.json │ │ │ │ ├── logs.wxml │ │ │ │ └── logs.wxss │ │ │ ├── project.config.json │ │ │ ├── project.private.config.json │ │ │ └── sitemap.json │ ├── workflow_api.json │ └── workflow_api.py ├── project_4_2 │ ├── enamel_adapter │ │ ├── enamel34.png │ │ ├── enamel37.png │ │ ├── enamel39.png │ │ ├── enamel74.png │ │ └── enamel75.png │ ├── wechat-example │ │ └── pet_enamel │ │ │ ├── app.js │ │ │ ├── app.json │ │ │ ├── app.wxss │ │ │ ├── pages │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── btn_download.png │ │ │ │ ├── btn_upload.png │ │ │ │ ├── dog_1.png │ │ │ │ └── dog_text.png │ │ │ ├── index │ │ │ │ ├── index.js │ │ │ │ ├── index.json │ │ │ │ ├── index.wxml │ │ │ │ └── index.wxss │ │ │ └── logs │ │ │ │ ├── logs.js │ │ │ │ ├── logs.json │ │ │ │ ├── logs.wxml │ │ │ │ └── logs.wxss │ │ │ ├── project.config.json │ │ │ ├── project.private.config.json │ │ │ └── sitemap.json │ ├── workflow_api.json │ └── workflow_api.py ├── project_5_1 │ ├── .DS_Store │ ├── web_takephoto │ │ ├── .DS_Store │ │ ├── assets │ │ │ ├── .DS_Store │ │ │ ├── css │ │ │ │ └── style.css │ │ │ ├── images │ │ │ │ ├── .DS_Store │ │ │ │ ├── bg_1.png │ │ │ │ ├── bg_2.png │ │ │ │ ├── bg_3.png │ │ │ │ ├── button_2.png │ │ │ │ ├── button_3.png │ │ │ │ ├── loading.png │ │ │ │ └── start.png │ │ │ ├── js │ │ │ │ ├── app.js │ │ │ │ └── utils.js │ │ │ └── services │ │ │ │ └── api.js │ │ ├── index.html │ │ └── libs │ │ │ └── jquery-2.1.3.min.js │ ├── workflow_api.json │ └── workflow_api.py ├── requirement.txt └── test.py ├── sdk └── comfy_sdk.py └── workflows ├── 2-1默认工作流.png ├── 2-2黏土小猫.png ├── 2-3图片转黏土.png ├── 3-5视频liveportrait.png ├── 4-1贴纸小程序.png ├── 4-2宠物珐琅生成器.png ├── 5-1圣诞节照相馆.png └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/README.md -------------------------------------------------------------------------------- /js_lib/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/js_lib/functions.js -------------------------------------------------------------------------------- /projects/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/.DS_Store -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/app.js -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/app.json -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/app.wxss -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/data/api_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/data/api_json.js -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/index/index.js -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/index/index.wxml -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/index/index.wxss -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/logs/logs.js -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/logs/logs.wxml -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/pages/logs/logs.wxss -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/project.config.json -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/project.private.config.json -------------------------------------------------------------------------------- /projects/project_2_1/wechat-example/txt2img/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/wechat-example/txt2img/sitemap.json -------------------------------------------------------------------------------- /projects/project_2_1/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_1/workflow_api.json -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/app.js -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/app.json -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/app.wxss -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/data/api_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/data/api_json.js -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/index/index.js -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/index/index.wxml -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/index/index.wxss -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/logs/logs.js -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/logs/logs.wxml -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/pages/logs/logs.wxss -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/project.config.json -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/project.private.config.json -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/sitemap.json -------------------------------------------------------------------------------- /projects/project_2_3/wechat-example/img2img/utils/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/wechat-example/img2img/utils/util.js -------------------------------------------------------------------------------- /projects/project_2_3/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_2_3/workflow_api.json -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/app.js -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/app.json -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/app.wxss -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/index/index.js -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/index/index.wxml -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/index/index.wxss -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/logs/logs.js -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/logs/logs.wxml -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/pages/logs/logs.wxss -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/project.config.json -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/project.private.config.json -------------------------------------------------------------------------------- /projects/project_3_5/wechat-example/video2video/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/wechat-example/video2video/sitemap.json -------------------------------------------------------------------------------- /projects/project_3_5/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/workflow_api.json -------------------------------------------------------------------------------- /projects/project_3_5/workflow_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_3_5/workflow_api.py -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/app.js -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/app.json -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/app.wxss -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/bg.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/btn_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/btn_download.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/btn_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/btn_upload.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/completed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/completed.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_1.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_2.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_3.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/images/ele_4.png -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.js -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.wxml -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/index/index.wxss -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.js -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.wxml -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/pages/logs/logs.wxss -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/project.config.json -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/project.private.config.json -------------------------------------------------------------------------------- /projects/project_4_1/wechat-example/crazy_sticker/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/wechat-example/crazy_sticker/sitemap.json -------------------------------------------------------------------------------- /projects/project_4_1/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/workflow_api.json -------------------------------------------------------------------------------- /projects/project_4_1/workflow_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_1/workflow_api.py -------------------------------------------------------------------------------- /projects/project_4_2/enamel_adapter/enamel34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/enamel_adapter/enamel34.png -------------------------------------------------------------------------------- /projects/project_4_2/enamel_adapter/enamel37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/enamel_adapter/enamel37.png -------------------------------------------------------------------------------- /projects/project_4_2/enamel_adapter/enamel39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/enamel_adapter/enamel39.png -------------------------------------------------------------------------------- /projects/project_4_2/enamel_adapter/enamel74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/enamel_adapter/enamel74.png -------------------------------------------------------------------------------- /projects/project_4_2/enamel_adapter/enamel75.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/enamel_adapter/enamel75.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/app.js -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/app.json -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/app.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/app.wxss -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/images/bg.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/images/btn_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/images/btn_download.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/images/btn_upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/images/btn_upload.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/images/dog_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/images/dog_1.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/images/dog_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/images/dog_text.png -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/index/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/index/index.js -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/index/index.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/index/index.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/index/index.wxml -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/index/index.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/index/index.wxss -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.js -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.json: -------------------------------------------------------------------------------- 1 | { 2 | "usingComponents": { 3 | } 4 | } -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.wxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.wxml -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.wxss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/pages/logs/logs.wxss -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/project.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/project.config.json -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/project.private.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/project.private.config.json -------------------------------------------------------------------------------- /projects/project_4_2/wechat-example/pet_enamel/sitemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/wechat-example/pet_enamel/sitemap.json -------------------------------------------------------------------------------- /projects/project_4_2/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/workflow_api.json -------------------------------------------------------------------------------- /projects/project_4_2/workflow_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_4_2/workflow_api.py -------------------------------------------------------------------------------- /projects/project_5_1/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/.DS_Store -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/.DS_Store -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/.DS_Store -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/css/style.css -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/.DS_Store -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/bg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/bg_1.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/bg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/bg_2.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/bg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/bg_3.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/button_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/button_2.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/button_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/button_3.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/loading.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/images/start.png -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/js/app.js -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/js/utils.js -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/assets/services/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/assets/services/api.js -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/index.html -------------------------------------------------------------------------------- /projects/project_5_1/web_takephoto/libs/jquery-2.1.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/web_takephoto/libs/jquery-2.1.3.min.js -------------------------------------------------------------------------------- /projects/project_5_1/workflow_api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/workflow_api.json -------------------------------------------------------------------------------- /projects/project_5_1/workflow_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/project_5_1/workflow_api.py -------------------------------------------------------------------------------- /projects/requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/requirement.txt -------------------------------------------------------------------------------- /projects/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/projects/test.py -------------------------------------------------------------------------------- /sdk/comfy_sdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/sdk/comfy_sdk.py -------------------------------------------------------------------------------- /workflows/2-1默认工作流.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/2-1默认工作流.png -------------------------------------------------------------------------------- /workflows/2-2黏土小猫.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/2-2黏土小猫.png -------------------------------------------------------------------------------- /workflows/2-3图片转黏土.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/2-3图片转黏土.png -------------------------------------------------------------------------------- /workflows/3-5视频liveportrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/3-5视频liveportrait.png -------------------------------------------------------------------------------- /workflows/4-1贴纸小程序.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/4-1贴纸小程序.png -------------------------------------------------------------------------------- /workflows/4-2宠物珐琅生成器.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/4-2宠物珐琅生成器.png -------------------------------------------------------------------------------- /workflows/5-1圣诞节照相馆.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuyou-dev/ComfyUI_workflow2app/HEAD/workflows/5-1圣诞节照相馆.png -------------------------------------------------------------------------------- /workflows/README.md: -------------------------------------------------------------------------------- 1 | ## Workflow工作流清单 2 | --------------------------------------------------------------------------------