Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/update flowise embed version #2932

Merged
merged 9 commits into from
Aug 5, 2024
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,25 +82,25 @@ Flowise has 3 different modules in a single mono repository.

### Setup

1. Clone the repository
1. Clone the repository

```bash
git clone https://github.com/FlowiseAI/Flowise.git
```

2. Go into repository folder
2. Go into repository folder

```bash
cd Flowise
```

3. Install all dependencies of all modules:
3. Install all dependencies of all modules:

```bash
pnpm install
```

4. Build all the code:
4. Build all the code:

```bash
pnpm build
Expand All @@ -109,20 +109,21 @@ Flowise has 3 different modules in a single mono repository.
<details>
<summary>Exit code 134 (JavaScript heap out of memory)</summary>
If you get this error when running the above `build` script, try increasing the Node.js heap size and run the script again:

export NODE_OPTIONS="--max-old-space-size=4096"
pnpm build

</details>

5. Start the app:
5. Start the app:

```bash
pnpm start
```

You can now access the app on [http://localhost:3000](http://localhost:3000)

6. For development build:
6. 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`
Expand Down
Loading
Loading