๐Ÿ“ฆ FlowiseAI / Flowise

Build AI Agents, Visually

โ˜… 48.4k stars โ‘‚ 23.6k forks ๐Ÿ‘ 48.4k watching โš–๏ธ Other
agentic-aiagentic-workflowagentsartificial-intelligencechatbotchatgptjavascriptlangchainlarge-language-modelslow-codemultiagent-systemsno-codeopenairagreacttypescriptworkflow-automation
๐Ÿ“ฅ Clone https://github.com/FlowiseAI/Flowise.git
HTTPS git clone https://github.com/FlowiseAI/Flowise.git
SSH git clone git@github.com:FlowiseAI/Flowise.git
CLI gh repo clone FlowiseAI/Flowise
Henry Heng Henry Heng Feat/add endpointhost to AWSChatBedrock (#5642) a411a2f 4 days ago ๐Ÿ“ History
๐Ÿ“‚ main View all commits โ†’
๐Ÿ“ .github
๐Ÿ“ .husky
๐Ÿ“ assets
๐Ÿ“ docker
๐Ÿ“ i18n
๐Ÿ“ images
๐Ÿ“ metrics
๐Ÿ“ packages
๐Ÿ“„ .dockerignore
๐Ÿ“„ .eslintrc.js
๐Ÿ“„ .gitignore
๐Ÿ“„ .npmrc
๐Ÿ“„ CODE_OF_CONDUCT.md
๐Ÿ“„ CONTRIBUTING.md
๐Ÿ“„ Dockerfile
๐Ÿ“„ LICENSE.md
๐Ÿ“„ package.json
๐Ÿ“„ pnpm-lock.yaml
๐Ÿ“„ README.md
๐Ÿ“„ SECURITY.md
๐Ÿ“„ turbo.json
๐Ÿ“„ README.md

Release Notes Discord Twitter Follow GitHub star chart GitHub fork

English | ็น้ซ”ไธญๆ–‡ | ็ฎ€ไฝ“ไธญๆ–‡ | ๆ—ฅๆœฌ่ชž | ํ•œ๊ตญ์–ด

Build AI Agents, Visually

๐Ÿ“š Table of Contents

โšกQuick Start

Download and Install NodeJS >= 18.15.0

  • Install Flowise
npm install -g flowise
  • Start Flowise
npx flowise start

๐Ÿณ 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:
docker build --no-cache -t flowise .

  • Run image:
docker run -d --name flowise -p 3000:3000 flowise

  • Stop image:
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

npm i -g pnpm

Setup

  • Clone the repository:
git clone https://github.com/FlowiseAI/Flowise.git

  • Go into repository folder:
cd Flowise

  • Install all dependencies of all modules:
pnpm install

  • Build all the code:
pnpm build

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:

# 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:

pnpm build

  • Start the app:
pnpm start

You can now access the app on http://localhost:3000

  • For development build:
  • Create .env file and specify the VITE_PORT (refer to .env.example) in packages/ui
  • Create .env file and specify the PORT (refer to .env.example) in packages/server
  • Run:
pnpm dev

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

Others

Deploy on Railway

Deploy to Northflank

Deploy to Render

HuggingFace Spaces

Deploy on Elestio

Deploy on Sealos

Deploy on RepoCloud

โ˜๏ธ 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.

Star History Chart

๐Ÿ“„ License

Source code in this repository is made available under the Apache License Version 2.0.