├── README.md ├── run.bat └── run.sh /README.md: -------------------------------------------------------------------------------- 1 | # Requirements 2 | 3 | - NodeJS https://nodejs.org/en 4 | - PNPM https://pnpm.io/installation 5 | - Git https://www.git-scm.com 6 | -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call git clone https://github.com/FlowiseAI/Flowise.git 3 | call npm install --global yarn 4 | call cd Flowise 5 | call pnpm upgrade 6 | call pnpm install 7 | call pnpm build 8 | start http://localhost:3000 9 | call pnpm start 10 | -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Clone the Git repository 4 | git clone https://github.com/FlowiseAI/Flowise.git 5 | 6 | # Install Yarn globally 7 | npm install --global yarn 8 | 9 | # Change directory to the cloned repository 10 | cd Flowise 11 | 12 | # Upgrade yarn packages 13 | pnpm upgrade 14 | 15 | # Install yarn dependencies 16 | pnpm install 17 | 18 | # Build the project 19 | pnpm build 20 | 21 | # Open the web browser with the given URL (this will vary based on the OS) 22 | if which xdg-open > /dev/null 23 | then 24 | xdg-open http://localhost:3000 25 | elif which gnome-open > /dev/null 26 | then 27 | gnome-open http://localhost:3000 28 | else 29 | open http://localhost:3000 30 | fi 31 | 32 | # Start the yarn project 33 | pnpm start 34 | --------------------------------------------------------------------------------