1
1
mirror of https://github.com/go-gitea/gitea synced 2024-06-23 19:55:49 +00:00
gitea/docs/content/doc/installation/from-source.zh-cn.md
John Olheiser bb25f85ce8
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 11:33:41 +08:00

3.6 KiB
Raw Blame History

date title slug weight toc draft aliases menu
2016-12-01T16:00:00+02:00 从源代码安装 install-from-source 30 false false
/zh-cn/install-from-source
sidebar
parent name weight identifier
installation 从源代码安装 30 install-from-source

从源代码安装

首先你需要安装Golang关于Golang的安装参见官方文档

其次你需要安装Node.jsNode.js 和 npm 将用于构建 Gitea 前端。

目录

{{< toc >}}

下载

你需要获取Gitea的源码最方便的方式是使用 git 命令。执行以下命令:

git clone https://github.com/go-gitea/gitea
cd gitea

然后你可以选择编译和安装的版本,当前你有多个选择。如果你想编译 main 版本,你可以直接跳到 编译 部分,这是我们的开发分支,虽然也很稳定但不建议您在正式产品中使用。

如果你想编译最新稳定分支,你可以执行以下命令签出源码:

git branch -a
git checkout v{{< version >}}

最后,你也可以直接使用标签版本如 v{{< version >}}。你可以执行以下命令列出可用的版本并选择某个版本签出:

git tag -l
git checkout v{{< version >}}

编译

要从源代码进行编译,以下依赖程序必须事先安装好:

  • go {{< min-go-version >}} 或以上版本, 详见这里
  • node {{< min-node-version >}} 或以上版本,并且安装 npm, 详见这里
  • make, 详见这里

各种可用的 make 任务 可以用来使编译过程更方便。

按照您的编译需求,以下 tags 可以使用:

  • bindata: 这个编译选项将会把运行Gitea所需的所有外部资源都打包到可执行文件中这样部署将非常简单因为除了可执行程序将不再需要任何其他文件。
  • sqlite sqlite_unlock_notify: 这个编译选项将启用SQLite3数据库的支持建议只在少数人使用时使用这个模式。
  • pam: 这个编译选项将会启用 PAM (Linux Pluggable Authentication Modules) 认证,如果你使用这一认证模式的话需要开启这个选项。

使用 bindata 可以打包资源文件到二进制可以使开发和测试更容易,你可以根据自己的需求决定是否打包资源文件。 要包含资源文件,请使用 bindata tag

TAGS="bindata" make build

默认的发布版本中的编译选项是: TAGS="bindata sqlite sqlite_unlock_notify"。以下为推荐的编译方式:

TAGS="bindata sqlite sqlite_unlock_notify" make build

测试

在执行了以上步骤之后,你将会获得 gitea 的二进制文件,在你复制到部署的机器之前可以先测试一下。在命令行执行完后,你可以 Ctrl + C 关掉程序。

./gitea web

交叉编译

Go 编译器支持交叉编译到不同的目标架构。有关 Go 支持的目标架构列表,请参见 Optional environment variables

交叉构建适用于 Linux ARM64 的 Gitea

GOOS=linux GOARCH=arm64 make build

交叉构建适用于 Linux ARM64 的 Gitea并且带上 Gitea 发行版采用的编译选项:

CC=aarch64-unknown-linux-gnu-gcc GOOS=linux GOARCH=arm64 TAGS="bindata sqlite sqlite_unlock_notify" make build

需要帮助?

如果从本页中没有找到你需要的内容,请访问 [帮助页面]({{< relref "support.zh-cn.md" >}})