mirror of
https://codeberg.org/forgejo/docs.git
synced 2024-11-21 17:36:59 -05:00
developer: the minimum node version is 20
Things will fail in mysterious ways with lower version. For instance when trying `make watch` the page won't load and complain index.js is not found.
This commit is contained in:
parent
ab5076eea3
commit
0a53b0a2cf
1 changed files with 10 additions and 4 deletions
|
@ -12,9 +12,9 @@ environment variable and to add the go bin directory or directories
|
|||
`${GOPATH//://bin:}/bin` to the `$PATH`. See the Go wiki entry for
|
||||
[GOPATH](https://github.com/golang/go/wiki/GOPATH).
|
||||
|
||||
Next, [install Node.js with npm](https://nodejs.org/en/download/) which is
|
||||
Next, [install Node.js with npm](https://nodejs.org/en/download/current) which is
|
||||
required to build the JavaScript and CSS files. The minimum supported Node.js
|
||||
version is 16 and the latest LTS version is recommended.
|
||||
version is 20.
|
||||
|
||||
**Note**: When executing make tasks that require external tools, like
|
||||
`make misspell-check`, Forgejo will automatically download and build these as
|
||||
|
@ -61,7 +61,7 @@ git checkout v1.21.2-0
|
|||
To build from source, the following programs must be present on the system:
|
||||
|
||||
- `go` v1.20 or higher, see [here](https://golang.org/dl/)
|
||||
- `node` 16 or higher with `npm`, see [here](https://nodejs.org/en/download/)
|
||||
- `node` 20 or higher with `npm`, see [here](https://nodejs.org/en/download/current)
|
||||
- `make`
|
||||
|
||||
Depending on requirements, the following build tags can be included.
|
||||
|
@ -95,7 +95,7 @@ TAGS="bindata sqlite sqlite_unlock_notify" make build
|
|||
The `build` target is split into two sub-targets:
|
||||
|
||||
- `make backend` which requires [Go v1.20](https://golang.org/dl/) or greater.
|
||||
- `make frontend` which requires [Node.js 16](https://nodejs.org/en/download/) or greater.
|
||||
- `make frontend` which requires [Node.js 20](https://nodejs.org/en/download/current) or greater.
|
||||
|
||||
If pre-built frontend files are present it is possible to only build the backend:
|
||||
|
||||
|
@ -114,3 +114,9 @@ launched manually from command line, it can be killed by pressing `Ctrl + C`.
|
|||
```bash
|
||||
./forgejo web
|
||||
```
|
||||
|
||||
To run and continuously rebuild when the source files change:
|
||||
|
||||
```bash
|
||||
make watch
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue