2017-11-27 03:14:32 +05:30
---
date: "2016-12-01T16:00:00+02:00"
title: "Installation from source"
slug: "install-from-source"
2023-04-04 19:17:31 +05:30
weight: 30
2020-12-09 12:17:06 +05:30
toc: false
2017-11-27 03:14:32 +05:30
draft: false
Refactor docs (#23752)
This was intended to be a small followup for
https://github.com/go-gitea/gitea/pull/23712, but...here we are.
1. Our docs currently use `slug` as the entire URL, which makes
refactoring tricky (see https://github.com/go-gitea/gitea/pull/23712).
Instead, this PR attempts to make future refactoring easier by using
slugs as an extension of the section. (Hugo terminology)
- What the above boils down to is this PR attempts to use directory
organization as URL management. e.g. `usage/comparison.en-us.md` ->
`en-us/usage/comparison/`, `usage/packages/overview.en-us.md` ->
`en-us/usage/packages/overview/`
- Technically we could even remove `slug`, as Hugo defaults to using
filename, however at least with this PR it means `slug` only needs to be
the name for the **current file** rather than an entire URL
2. This PR adds appropriate aliases (redirects) for pages, so anything
on the internet that links to our docs should hopefully not break.
3. A minor nit I've had for a while, renaming `seek-help` to `support`.
It's a minor thing, but `seek-help` has a strange connotation to it.
4. The commits are split such that you can review the first which is the
"actual" change, and the second is added redirects so that the first
doesn't break links elsewhere.
---------
Signed-off-by: jolheiser <john.olheiser@gmail.com>
2023-04-28 09:03:41 +05:30
aliases:
- /en-us/install-from-source
2017-11-27 03:14:32 +05:30
menu:
sidebar:
parent: "installation"
name: "From source"
weight: 30
identifier: "install-from-source"
---
# Installation from source
2019-02-12 21:52:01 +05:30
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 ).
2019-12-05 09:11:38 +05:30
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
2020-03-06 04:06:22 +05:30
version is {{< min-node-version > }} and the latest LTS version is recommended.
2019-12-05 09:11:38 +05:30
2019-02-12 21:52:01 +05:30
**Note**: When executing make tasks that require external tools, like
`make misspell-check` , Gitea will automatically download and build these as
2019-03-10 02:45:45 +05:30
necessary. To be able to use these, you must have the `"$GOPATH/bin"` directory
2019-02-12 21:52:01 +05:30
on the executable path. If you don't add the go bin directory to the
2019-03-10 02:45:45 +05:30
executable path, you will have to manage this yourself.
2019-02-12 21:52:01 +05:30
2020-03-05 06:07:19 +05:30
**Note 2**: Go version {{< min-go-version > }} or higher is required. However, it is recommended to
2019-02-12 21:52:01 +05:30
obtain the same version as our continuous integration, see the advice given in
2023-05-29 18:57:16 +05:30
[Hacking on Gitea ]({{< relref "doc/development/hacking-on-gitea.en-us.md" >}} )
2017-11-27 03:14:32 +05:30
2020-12-09 12:17:06 +05:30
**Table of Contents**
2020-12-08 10:22:26 +05:30
{{< toc > }}
2017-11-27 03:14:32 +05:30
## Download
2020-01-29 08:00:02 +05:30
First, we must retrieve the source code. Since, the advent of go modules, the
2021-12-24 09:26:57 +05:30
simplest way of doing this is to use Git directly as we no longer have to have
Gitea built from within the GOPATH.
2017-11-27 03:14:32 +05:30
2019-02-12 21:52:01 +05:30
```bash
2020-01-29 08:00:02 +05:30
git clone https://github.com/go-gitea/gitea
2017-11-27 03:14:32 +05:30
```
2020-01-29 08:00:02 +05:30
(Previous versions of this document recommended using `go get` . This is
no longer necessary.)
2019-02-12 21:52:01 +05:30
Decide which version of Gitea to build and install. Currently, there are
2021-05-04 21:46:23 +05:30
multiple options to choose from. The `main` branch represents the current
development version. To build with main, skip to the [build section ](#build ).
2017-11-27 03:14:32 +05:30
2018-01-09 04:18:42 +05:30
To work with tagged releases, the following commands can be used:
2019-02-12 21:52:01 +05:30
```bash
2017-11-27 03:14:32 +05:30
git branch -a
2019-08-23 07:25:06 +05:30
git checkout v{{< version > }}
2017-11-27 03:14:32 +05:30
```
2019-02-12 21:52:01 +05:30
To validate a Pull Request, first enable the new branch (`xyz` is the PR id;
for example `2663` for [#2663 ](https://github.com/go-gitea/gitea/pull/2663 )):
2017-11-27 03:14:32 +05:30
2019-02-12 21:52:01 +05:30
```bash
2017-11-27 03:14:32 +05:30
git fetch origin pull/xyz/head:pr-xyz
```
2019-08-23 07:25:06 +05:30
To build Gitea from source at a specific tagged release (like v{{< version > }}), list the
2019-02-12 21:52:01 +05:30
available tags and check out the specific tag.
2018-01-09 04:18:42 +05:30
List available tags with the following.
2017-11-27 03:14:32 +05:30
2019-02-12 21:52:01 +05:30
```bash
2017-11-27 03:14:32 +05:30
git tag -l
2019-08-23 07:25:06 +05:30
git checkout v{{< version > }} # or git checkout pr-xyz
2017-11-27 03:14:32 +05:30
```
## Build
2019-12-05 09:11:38 +05:30
To build from source, the following programs must be present on the system:
2020-03-05 06:07:19 +05:30
- `go` {{< min-go-version > }} or higher, see [here ](https://golang.org/dl/ )
2020-03-06 04:06:22 +05:30
- `node` {{< min-node-version > }} or higher with `npm` , see [here ](https://nodejs.org/en/download/ )
2023-03-23 20:48:24 +05:30
- `make` , see [here ]({{< relref "doc/development/hacking-on-gitea.en-us.md" >}}#installing-make )
2019-12-05 09:11:38 +05:30
2021-05-04 21:46:23 +05:30
Various [make tasks ](https://github.com/go-gitea/gitea/blob/main/Makefile )
2019-02-12 21:52:01 +05:30
are provided to keep the build process as simple as possible.
2018-01-09 04:18:42 +05:30
Depending on requirements, the following build tags can be included.
2017-11-27 03:14:32 +05:30
2022-11-18 12:04:39 +05:30
- `bindata` : Build a single monolithic binary, with all assets included. Required for production build.
2020-12-09 12:17:06 +05:30
- `sqlite sqlite_unlock_notify` : Enable support for a
2019-02-12 21:52:01 +05:30
[SQLite3 ](https://sqlite.org/ ) database. Suggested only for tiny
installations.
2020-12-09 12:17:06 +05:30
- `pam` : Enable support for PAM (Linux Pluggable Authentication Modules). Can
2019-02-12 21:52:01 +05:30
be used to authenticate local users or extend authentication to methods
available to PAM.
2022-07-28 06:52:47 +05:30
- `gogit` : (EXPERIMENTAL) Use go-git variants of Git commands.
2019-02-12 21:52:01 +05:30
2022-11-18 12:04:39 +05:30
Bundling all assets (JS/CSS/templates, etc) into the binary. Using the `bindata` build tag is required for
production deployments. You could exclude `bindata` when you are developing/testing Gitea or able to separate the assets correctly.
To include all assets, use the `bindata` tag:
2019-02-12 21:52:01 +05:30
```bash
2019-12-05 09:11:38 +05:30
TAGS="bindata" make build
2019-02-12 21:52:01 +05:30
```
2017-11-27 03:14:32 +05:30
2019-03-10 02:45:45 +05:30
In the default release build of our continuous integration system, the build
2019-02-12 21:52:01 +05:30
tags are: `TAGS="bindata sqlite sqlite_unlock_notify"` . The simplest
recommended way to build from source is therefore:
2017-11-27 03:14:32 +05:30
2019-02-12 21:52:01 +05:30
```bash
2019-12-05 09:11:38 +05:30
TAGS="bindata sqlite sqlite_unlock_notify" make build
2017-11-27 03:14:32 +05:30
```
2020-02-22 14:45:11 +05:30
The `build` target is split into two sub-targets:
2020-03-05 06:07:19 +05:30
- `make backend` which requires [Go {{< min-go-version >}} ](https://golang.org/dl/ ) or greater.
2020-03-06 04:06:22 +05:30
- `make frontend` which requires [Node.js {{< min-node-version >}} ](https://nodejs.org/en/download/ ) or greater.
2020-02-22 14:45:11 +05:30
If pre-built frontend files are present it is possible to only build the backend:
```bash
TAGS="bindata" make backend
2020-02-26 23:58:39 +05:30
```
2020-02-22 14:45:11 +05:30
2023-06-06 10:27:08 +05:30
Webpack source maps are by default enabled in development builds and disabled in production builds. They can be enabled by setting the `ENABLE_SOURCEMAP=true` environment variable.
2017-11-27 03:14:32 +05:30
## Test
2019-03-10 02:45:45 +05:30
After following the steps above, a `gitea` binary will be available in the working directory.
2018-01-09 04:18:42 +05:30
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` .
2017-11-27 03:14:32 +05:30
2019-02-12 21:52:01 +05:30
```bash
2017-11-27 03:14:32 +05:30
./gitea web
```
2019-04-29 23:38:21 +05:30
2020-08-18 16:51:24 +05:30
## Changing default paths
2019-04-29 23:38:21 +05:30
2022-11-10 06:52:31 +05:30
Gitea will search for a number of things from the _`CustomPath`_ . By default this is
2019-04-29 23:38:21 +05:30
the `custom/` directory in the current working directory when running Gitea. It will also
2022-12-14 05:50:36 +05:30
look for its configuration file _`CustomConf`_ in `$(CustomPath)/conf/app.ini` , and will use the
2022-11-10 06:52:31 +05:30
current working directory as the relative base path _`AppWorkPath`_ for a number configurable
values. Finally the static files will be served from _`StaticRootPath`_ which defaults to the _`AppWorkPath`_ .
2019-04-29 23:38:21 +05:30
These values, although useful when developing, may conflict with downstream users preferences.
One option is to use a script file to shadow the `gitea` binary and create an appropriate
environment before running Gitea. However, when building you can change these defaults
using the `LDFLAGS` environment variable for `make` . The appropriate settings are as follows
2022-11-10 06:52:31 +05:30
- To set the _`CustomPath`_ use `LDFLAGS="-X \"code.gitea.io/gitea/modules/setting.CustomPath=custom-path\""`
- For _`CustomConf`_ you should use `-X \"code.gitea.io/gitea/modules/setting.CustomConf=conf.ini\"`
- For _`AppWorkPath`_ you should use `-X \"code.gitea.io/gitea/modules/setting.AppWorkPath=working-path\"`
- For _`StaticRootPath`_ you should use `-X \"code.gitea.io/gitea/modules/setting.StaticRootPath=static-root-path\"`
2023-03-16 12:52:54 +05:30
- To change the default PID file location use `-X \"code.gitea.io/gitea/cmd.PIDFile=/run/gitea.pid\"`
2019-04-29 23:38:21 +05:30
Add as many of the strings with their preceding `-X` to the `LDFLAGS` variable and run `make build`
with the appropriate `TAGS` as above.
Running `gitea help` will allow you to review what the computed settings will be for your `gitea` .
2020-04-11 08:43:31 +05:30
## Cross Build
The `go` compiler toolchain supports cross-compiling to different architecture targets that are supported by the toolchain. See [`GOOS` and `GOARCH` environment variable ](https://golang.org/doc/install/source#environment ) for the list of supported targets. Cross compilation is helpful if you want to build Gitea for less-powerful systems (such as Raspberry Pi).
To cross build Gitea with build tags (`TAGS`), you also need a C cross compiler which targets the same architecture as selected by the `GOOS` and `GOARCH` variables. For example, to cross build for Linux ARM64 (`GOOS=linux` and `GOARCH=arm64` ), you need the `aarch64-unknown-linux-gnu-gcc` cross compiler. This is required because Gitea build tags uses `cgo` 's foreign-function interface (FFI).
Cross-build Gitea for Linux ARM64, without any tags:
```
GOOS=linux GOARCH=arm64 make build
```
Cross-build Gitea for Linux ARM64, with recommended build tags:
```
CC=aarch64-unknown-linux-gnu-gcc GOOS=linux GOARCH=arm64 TAGS="bindata sqlite sqlite_unlock_notify" make build
```
Replace `CC` , `GOOS` , and `GOARCH` as appropriate for your architecture target.
2021-02-08 07:36:21 +05:30
You will sometimes need to build a static compiled image. To do this you will need to add:
```
LDFLAGS="-linkmode external -extldflags '-static' $LDFLAGS" TAGS="netgo osusergo $TAGS" make build
```
This can be combined with `CC` , `GOOS` , and `GOARCH` as above.
2023-02-21 23:02:24 +05:30
### Adding bash/zsh autocompletion (from 1.19)
A script to enable bash-completion can be found at [`contrib/autocompletion/bash_autocomplete` ](https://raw.githubusercontent.com/go-gitea/gitea/main/contrib/autocompletion/bash_autocomplete ). This should be altered as appropriate and can be `source` in your `.bashrc`
or copied as `/usr/share/bash-completion/completions/gitea` .
2023-05-17 11:15:26 +05:30
Similarly, a script for zsh-completion can be found at [`contrib/autocompletion/zsh_autocomplete` ](https://raw.githubusercontent.com/go-gitea/gitea/main/contrib/autocompletion/zsh_autocomplete ). This can be copied to `/usr/share/zsh/_gitea` or sourced within your
2023-02-21 23:02:24 +05:30
`.zshrc` .
YMMV and these scripts may need further improvement.