diff options
author | Aidan Fitzgerald <aidan-fitz@users.noreply.github.com> | 2019-03-09 16:15:45 -0500 |
---|---|---|
committer | techknowlogick <matti@mdranta.net> | 2019-03-09 16:15:45 -0500 |
commit | f5cf9a8355c46fa5619c03465178b51171ac30b9 (patch) | |
tree | 0163eb48ca238b03612176817449133cb31e34cf /docs/content/doc/installation/from-source.en-us.md | |
parent | 8fffb0616866cfe7a293b457d8703724666374cb (diff) | |
download | gitea-f5cf9a8355c46fa5619c03465178b51171ac30b9.tar.gz gitea-f5cf9a8355c46fa5619c03465178b51171ac30b9.zip |
Copyedit docs (#6275)
Diffstat (limited to 'docs/content/doc/installation/from-source.en-us.md')
-rw-r--r-- | docs/content/doc/installation/from-source.en-us.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/content/doc/installation/from-source.en-us.md b/docs/content/doc/installation/from-source.en-us.md index 5806b0bfcc..9baeaac5a5 100644 --- a/docs/content/doc/installation/from-source.en-us.md +++ b/docs/content/doc/installation/from-source.en-us.md @@ -23,18 +23,18 @@ environment variable and to add the go bin directory or directories **Note**: When executing make tasks that require external tools, like `make misspell-check`, Gitea will automatically download and build these as -necessary. To be able to use these you must have the `"$GOPATH/bin"` directory +necessary. To be able to use these, you must have the `"$GOPATH/bin"` directory on the executable path. If you don't add the go bin directory to the -executable path you will have to manage this yourself. +executable path, you will have to manage this yourself. -**Note 2**: Go version 1.9 or higher is required, however it is recommended to +**Note 2**: Go version 1.9 or higher is required. However, it is recommended to obtain the same version as our continuous integration, see the advice given in <a href='{{ relref "docs/advanced/hacking-on-gitea.en-us.md" }}'>Hacking on Gitea</a> ## Download -First retrieve the source code. The easiest way is to use the Go tool. Use the +First, retrieve the source code. The easiest way is to use the Go tool. Use the following commands to fetch the source and switch into the source directory. Go is quite opinionated about where it expects its source code, and simply cloning the Gitea repository to an arbitrary path is likely to lead to @@ -100,7 +100,7 @@ task e.g.: TAGS="bindata" make generate build ``` -In the default release build of our continuous integration system the build +In the default release build of our continuous integration system, the build tags are: `TAGS="bindata sqlite sqlite_unlock_notify"`. The simplest recommended way to build from source is therefore: @@ -110,7 +110,7 @@ TAGS="bindata sqlite sqlite_unlock_notify" make generate build ## Test -After following the steps above a `gitea` binary will be available in the working directory. +After following the steps above, a `gitea` binary will be available in the working directory. It can be tested from this directory or moved to a directory with test data. When Gitea is launched manually from command line, it can be killed by pressing `Ctrl + C`. |