Skip to content

Commit

Permalink
Merge branch 'main' into 0.0.6-alpha
Browse files Browse the repository at this point in the history
  • Loading branch information
6174 authored Feb 6, 2024
2 parents bc0f1fc + 6e5a045 commit 03eaf72
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 1 deletion.
36 changes: 36 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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
}
}
]
}
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 03eaf72

Please sign in to comment.