English | 中文
We appreciate any form of contributions.
Star and share the Github Repo.
Search up for any questions in Q&A section, if you can't find one, don't hesitate to create one. It might helps others that have similar question.
Yes! Sharing how you use Flowise is a way of contribution. Export your chatflow as JSON, attach a screenshot and share it in Show and Tell section.
Ideas are welcome such as new feature, apps integration, and blockchain networks. Submit in Ideas section.
Found an issue? Report it.
Not sure what to contribute? Some ideas:
- Create new components from Langchain
- Update existing components such as extending functionality, fixing bugs
- Add new chatflow ideas
Flowise has 3 different modules in a single mono repository.
server
: Node backend to serve API logicsui
: React frontendcomponents
: Langchain components
- Install Yarn v1
npm i -g yarn
-
Fork the official Flowise Github Repository.
-
Clone your forked repository.
-
Create a new branch, see guide. Naming conventions:
- For feature branch:
feature/<Your New Feature>
- For bug fix branch:
bugfix/<Your New Bugfix>
.
- For feature branch:
-
Switch to the newly created branch.
-
Go into repository folder
cd Flowise
-
Install all dependencies of all modules:
yarn install
-
Build all the code:
yarn build
-
Start the app on https://localhost:3000
yarn start
-
For development:
- Create
.env
file and specify thePORT
(refer to.env.example
) inpackages/ui
- Create
.env
file and specify thePORT
(refer to.env.example
) inpackages/server
- Run
yarn dev
Any changes made in
packages/ui
orpackages/server
will be reflected on https://localhost:8080For changes made in
packages/components
, runyarn build
again to pickup the changes. - Create
-
After making all the changes, run
yarn build
and
yarn start
to make sure everything works fine in production.
-
Commit code and submit Pull Request from forked branch pointing to Flowise master.
Flowise support different environment variables to configure your instance. You can specify the following variables in the .env
file inside packages/server
folder. Read more
| Variable | Description | Type | Default |
| --------------------------- | ---------------------------------------------------------------------------- | ------------------------------------------------ | ----------------------------------- | --- |
| PORT | The HTTP port Flowise runs on | Number | 3000 |
| FLOWISE_USERNAME | Username to login | String | |
| FLOWISE_PASSWORD | Password to login | String | |
| DEBUG | Print logs from components | Boolean | |
| LOG_PATH | Location where log files are stored | String | your-path/Flowise/logs
|
| LOG_LEVEL | Different levels of logs | Enum String: error
, info
, verbose
, debug
| info
|
| APIKEY_PATH | Location where api keys are saved | String | your-path/Flowise/packages/server
|
| TOOL_FUNCTION_BUILTIN_DEP | NodeJS built-in modules to be used for Tool Function | String | |
| TOOL_FUNCTION_EXTERNAL_DEP | External modules to be used for Tool Function | String | | |
| DATABASE_TYPE | Type of database to store the flo