@@ -23,16 +23,16 @@ English | [繁體中文](./i18n/README-TW.md) | [简体中文](./i18n/README-ZH.
23
23
24
24
## 📚 Table of Contents
25
25
26
- - [ ⚡ Quick Start] ( #-quick-start )
27
- - [ 🐳 Docker] ( #-docker )
28
- - [ 👨💻 Developers] ( #-developers )
29
- - [ 🌱 Env Variables] ( #-env-variables )
30
- - [ 📖 Documentation] ( #-documentation )
31
- - [ 🌐 Self Host] ( #-self-host )
32
- - [ ☁️ Flowise Cloud] ( #️-flowise-cloud )
33
- - [ 🙋 Support] ( #-support )
34
- - [ 🙌 Contributing] ( #-contributing )
35
- - [ 📄 License] ( #-license )
26
+ - [ ⚡ Quick Start] ( #-quick-start )
27
+ - [ 🐳 Docker] ( #-docker )
28
+ - [ 👨💻 Developers] ( #-developers )
29
+ - [ 🌱 Env Variables] ( #-env-variables )
30
+ - [ 📖 Documentation] ( #-documentation )
31
+ - [ 🌐 Self Host] ( #-self-host )
32
+ - [ ☁️ Flowise Cloud] ( #️-flowise-cloud )
33
+ - [ 🙋 Support] ( #-support )
34
+ - [ 🙌 Contributing] ( #-contributing )
35
+ - [ 📄 License] ( #-license )
36
36
37
37
## ⚡Quick Start
38
38
@@ -64,18 +64,19 @@ Download and Install [NodeJS](https://nodejs.org/en/download) >= 18.15.0
64
64
# ## Docker Image
65
65
66
66
1. Build the image locally:
67
-
67
+
68
68
` ` ` bash
69
69
docker build --no-cache -t flowise .
70
70
` ` `
71
+
71
72
2. Run image:
72
-
73
+
73
74
` ` ` bash
74
75
docker run -d --name flowise -p 3000:3000 flowise
75
76
` ` `
76
77
77
78
3. Stop image:
78
-
79
+
79
80
` ` ` bash
80
81
docker stop flowise
81
82
` ` `
@@ -124,10 +125,24 @@ Flowise has 3 different modules in a single mono repository.
124
125
125
126
< details>
126
127
< summary> Exit code 134 (JavaScript heap out of memory)< /summary>
127
- If you get this error when running the above ` build` script, try increasing the Node.js heap size and run the script again:
128
+ If you get this error when running the above ` build` script, try increasing the Node.js heap size and run the script again:
129
+
130
+ ` ` ` bash
131
+ # macOS / Linux / Git Bash
132
+ export NODE_OPTIONS=" --max-old-space-size=4096"
133
+
134
+ # Windows PowerShell
135
+ $env :NODE_OPTIONS=" --max-old-space-size=4096"
128
136
129
- export NODE_OPTIONS=" --max-old-space-size=4096"
130
- pnpm build
137
+ # Windows CMD
138
+ set NODE_OPTIONS=--max-old-space-size=4096
139
+ ` ` `
140
+
141
+ Then run:
142
+
143
+ ` ` ` bash
144
+ pnpm build
145
+ ` ` `
131
146
132
147
< /details>
133
148
0 commit comments