diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 00000000..d20451b9 --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,36 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "startf", + "type": "shell", + "command": "npm run dev:frontend", + "problemMatcher": [], + "presentation": { + "reveal": "always", + "panel": "new" + } + }, + { + "label": "startb", + "type": "shell", + "command": "npm run dev:backend", + "problemMatcher": [], + "presentation": { + "reveal": "always", + "panel": "new" + } + }, + { + "label": "start both", + "dependsOn": [ + "startf", + "startb" + ], + "group": { + "kind": "build", + "isDefault": true + } + } + ] +} \ No newline at end of file diff --git a/README.md b/README.md index 8d0c144d..f526cf24 100755 --- a/README.md +++ b/README.md @@ -24,9 +24,11 @@ workflow templates, and process editing, every step is well designed. If you like ComflowySpace, give our repo a [⭐ Star](https://github.com/6174/comflowyspace) and [👀 Watch](https://github.com/6174/comflowyspace/subscription) our repository to stay updated. ## Download + * **MacOS:** [Mac Intel](https://github.com/6174/comflowyspace/releases/download/v0.0.6-alpha/comflowy-0.0.6-alpha.dmg) | [Mac M](https://github.com/6174/comflowyspace/releases/download/v0.0.6-alpha/comflowy-0.0.6-alpha-arm64.dmg) * **[Windows](https://github.com/6174/comflowyspace/releases/download/v0.0.6-alpha/comflowy-0.0.6-alpha.exe)** + ## Key Features > If you want to know more about key features, feel free to check out our blog articles [ComflowySpace VS ComfyUI](https://www.comflowy.com/blog/comflowy-vs-comfyui). * **More Convenient Installation**: Installing ComfyUI is complicated and often encounters various strange problems, leading to installation failure. To solve this problem, ComflowySpace offers a one-click installation feature so you can complete the installation within a few minutes. diff --git a/package.json b/package.json index f66abe6a..f212ab0d 100755 --- a/package.json +++ b/package.json @@ -5,7 +5,9 @@ "dev": "turbo run dev", "lint": "turbo run lint", "install-package-builder": "cd ./apps/electron-package && npm i", - "format": "prettier --write \"**/*.{ts,tsx,md}\"" + "format": "prettier --write \"**/*.{ts,tsx,md}\"", + "dev:frontend": "cd ./apps/electron-frontend && pnpm run dev", + "dev:backend": "cd ./apps/electron-backend && pnpm run dev" }, "devDependencies": { "@types/jest": "^29.5.10",