diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2020-09-03 18:11:23 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-03 11:11:23 +0100 |
commit | f1a7cd6757f69d38937cd0be78e3a63e45605a80 (patch) | |
tree | 8f2769095166eb6c0b69680f74ed1359c55f831c /docs/content/doc/advanced/hacking-on-gitea.en-us.md | |
parent | baa93855e8726ef721b4c3b1a1fd70ff34ec3e36 (diff) | |
download | gitea-f1a7cd6757f69d38937cd0be78e3a63e45605a80.tar.gz gitea-f1a7cd6757f69d38937cd0be78e3a63e45605a80.zip |
Remove GOPATH set up on hacking (#12698)
Diffstat (limited to 'docs/content/doc/advanced/hacking-on-gitea.en-us.md')
-rw-r--r-- | docs/content/doc/advanced/hacking-on-gitea.en-us.md | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/content/doc/advanced/hacking-on-gitea.en-us.md b/docs/content/doc/advanced/hacking-on-gitea.en-us.md index b24260c68a..0c8ab419e4 100644 --- a/docs/content/doc/advanced/hacking-on-gitea.en-us.md +++ b/docs/content/doc/advanced/hacking-on-gitea.en-us.md @@ -15,13 +15,10 @@ menu: # Hacking on Gitea -## Installing go and setting the GOPATH +## Installing go You should [install go](https://golang.org/doc/install) and set up your go -environment correctly. In particular, it is recommended to set the `$GOPATH` -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). +environment correctly. Next, [install Node.js with npm](https://nodejs.org/en/download/) which is required to build the JavaScript and CSS files. The minimum supported Node.js |