You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Simply remove the .example from the end of the filename, and fill in the values.
59
+
> Note: In most cases you will only have to change FE enviroment variables for development purposes.
60
+
61
+
3. Run the build command
62
+
63
+
```sh
64
+
npm run build
65
+
```
66
+
67
+
4. Start the server
68
+
69
+
```sh
70
+
npm run start
71
+
```
72
+
73
+
<spanid="common-installation-issues"></span>
74
+
75
+
#### Possible installation issues
76
+
77
+
Make issue
78
+
79
+
```sh
80
+
npm error gyp ERR! stack Error: not found: make
81
+
```
82
+
83
+
This is because you do not have the build essentials installed which is required for Linux. You can install them by running the following command:
84
+
85
+
```sh
86
+
sudo apt-get install build-essential
87
+
```
88
+
89
+
Memory issue
90
+
91
+
```sh
92
+
Aborted (core dumped)
93
+
```
94
+
95
+
When running the `npm run build` command it may take more memory than node allows by default. You will get the above error in such a case. To fix this, you can run the following command instead when building:
96
+
97
+
```sh
98
+
NODE_OPTIONS="--max-old-space-size=4096" npm run build
0 commit comments