Vibe-Workflow
Free, open-source alternative to Weavy AI, Krea Nodes, Freepik Spaces & FloraFauna AI — node-based AI workflow builder for generative image & video pipelines
File Explorer
- docker.yml
- page.js
- WorkflowBuilderClient.js
- page.js
- WorkflowListingClient.js
- favicon.ico
- globals.css
- layout.js
- page.js
- file.svg
- globe.svg
- next.svg
- vercel.svg
- window.svg
- .gitignore
- Dockerfile
- eslint.config.mjs
- jsconfig.json
- next.config.mjs
- package.json
- postcss.config.mjs
- README.md
- ApiNode.jsx
- AudioNode.jsx
- AudioPlayer.jsx
- ChatWidget.jsx
- ImageNode.jsx
- NodeFlow.jsx
- NodeOptionsMenu.jsx
- NodeSendButton.jsx
- NodesNavbar.jsx
- PromptConcate.jsx
- RenderApiField.jsx
- RenderField.jsx
- TextNode.jsx
- UploadNode.jsx
- useGenerationCost.jsx
- utility.jsx
- VideoCombiner.jsx
- VideoNode.jsx
- VideoPlayer.jsx
- WorkflowStore.jsx
- index.js
- tailwind.css
- WorkflowBuilder.jsx
- .gitignore
- babel.config.json
- package.json
- postcss.config.js
- tailwind.config.js
- __init__.py
- app_router.py
- workflow_router.py
- __init__.py
- workflow_helper.py
- __init__.py
- main.py
- .env.example
- .gitignore
- Dockerfile
- pyproject.toml
- README.md
- requirements.txt
- .dockerignore
- .env.example
- .gitignore
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- docker-compose.yml
- LICENSE
- package-lock.json
- package.json
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
docker compose down
View Details ▼
docker compose down
Stop and remove containers, networks, images, and volumes created by `docker compose up`.
docker compose down
Stop and remove all containers and networks:
docker compose down --rmi all
Stop and remove containers, networks, and all images used by services:
docker compose down --rmi local
Stop and remove containers, networks, and only images without a custom tag:
docker compose up
View Details ▼
docker compose up
Start and run Docker services defined in a Compose file.
docker compose up
Start all services defined in the docker-compose file:
docker compose up {{[-d|--detach]}}
Start services in the background (detached mode):
docker compose up --build
Start services and rebuild images before starting:
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
npm install
View Details ▼
npm install
Install Node packages.
npm {{[i|install]}}
Install dependencies listed in `package.json`:
npm {{[i|install]}} {{package_name}}@{{version}}
Download a specific version of a package and add it to the list of dependencies in `package.json`:
npm {{[i|install]}} {{package_name}} {{[-D|--save-dev]}}
Download the latest version of a package and add it to the list of dev dependencies in `package.json`:
npm run
View Details ▼
npm run
Run a script.
npm run
List available scripts:
npm run {{script_name}}
Run a script:
npm run {{script_name}} -- {{argument}} {{--option}}
Pass arguments to a script:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
python
View Details ▼
python
Python language interpreter.
python
Start a REPL (interactive shell):
python {{path/to/file.py}}
Execute a specific Python file:
python -i {{path/to/file.py}}
Execute a specific Python file and start a REPL:
uvicorn
View Details ▼
uvicorn
Python ASGI HTTP Server, for asynchronous projects.
uvicorn {{import.path:app_object}}
Run Python web app:
uvicorn --host {{localhost}} --port {{8080}} {{import.path:app_object}}
Listen on port 8080 on localhost:
uvicorn --reload {{import.path:app_object}}
Turn on live reload:
