Build AI Agents, Visually
๐ Table of Contents
โกQuick Start Download and Install NodeJS >= 20.0.0
Install Flowise
bash
Copy
npm install -g flowise
Start Flowise
bash
Copy
npx flowise start
Open http://localhost:3000
๐ณ Docker Docker Compose
Clone the Flowise project
Go to docker folder at the root of the project
Copy .env.example file, paste it into the same location, and rename to .env file
docker compose up -d
Open http://localhost:3000
You can bring the containers down by docker compose stop
Docker Image
Build the image locally:
bash
Copy
docker build --no-cache -t flowise .
Run image:
bash
Copy
docker run -d --name flowise -p 3000:3000 flowise
Stop image:
bash
Copy
docker stop flowise
๐จโ๐ป Developers Flowise has 3 different modules in a single mono repository.
server: Node backend to serve API logics
ui: React frontend
components: Third-party nodes integrations
api-documentation: Auto-generated swagger-ui API docs from express
Prerequisite
Setup
Clone the repository:
bash
Copy
git clone https://github.com/FlowiseAI/Flowise.git
Go into repository folder:
Install all dependencies of all modules:
Build all the code:
Exit code 134 (JavaScript heap out of memory)
If you get this error when running the above `build` script, try increasing the Node.js heap size and run the script again:
bash
Copy
# macOS / Linux / Git Bash
export NODE_OPTIONS="--max-old-space-size=4096"
# Windows PowerShell
$env:NODE_OPTIONS="--max-old-space-size=4096"
# Windows CMD
set NODE_OPTIONS=--max-old-space-size=4096
Then run:
Start the app:
You can now access the app on http://localhost:3000
For development build:
Any code changes will reload the app automatically on http://localhost:8080
๐ฑ Env Variables Flowise supports different environment variables to configure your instance. You can specify the following variables in the .env file inside packages/server folder. Read more
๐ Documentation You can view the Flowise Docs here
๐ Self Host Deploy Flowise self-hosted in your existing infrastructure, we support various deployments
โ๏ธ Flowise Cloud Get Started with Flowise Cloud .
๐ Support Feel free to ask any questions, raise problems, and request new features in Discussion .
๐ Contributing Thanks go to these awesome contributors
See Contributing Guide . Reach out to us at Discord if you have any questions or issues.
๐ License Source code in this repository is made available under the Apache License Version 2.0 .
๐ Quick Start
bash
Copy
npm install -g flowise