1
0
mirror of https://gitlab.com/packaging/gitea synced 2024-12-18 08:03:29 +00:00

update README

This commit is contained in:
morph027 2020-06-21 08:35:34 +02:00
parent 25a82ff3b0
commit 22739bc014
No known key found for this signature in database
GPG Key ID: BF17A54BB873BE58

View File

@ -1,13 +1,31 @@
# [Gitea](https://gitea.io) apt packages
# [Gitea](https://gitea.io) Debian/Ubuntu Packages

Packages are built using [fpm](https://github.com/jordansissel/fpm/) by pushing released tags and repo is created using [Gitlabs static pages](https://morph027.gitlab.io/blog/repo-hosting-using-gitlab-pages/).

Minimum install and update tests are in place to prevent upload of broken packages.

### Add repo signing key to apt

```bash
```
sudo curl -sL -o /etc/apt/trusted.gpg.d/morph027-gitea.asc https://packaging.gitlab.io/gitea/gpg.key
```

### Add repo to apt

```bash
```
echo "deb [arch=amd64] https://packaging.gitlab.io/gitea gitea main" | sudo tee /etc/apt/sources.list.d/morph027-gitea.list
```

### Install

```
sudo apt-get update
sudo apt-get install gitea
```

### Start

```
systemctl start gitea
systemctl enable gitea
```