Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://gitlab.com/packaging/gitea
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD
https://gitlab.com/packaging/gitea
Last synced: about 1 month ago
JSON representation
Git with a cup of tea! Painless self-hosted all-in-one software development service, including Git hosting, code review, team collaboration, package registry and CI/CD
- Host: gitlab.com
- URL: https://gitlab.com/packaging/gitea
- Owner: packaging
- License: mit
- Created: 2020-04-12T10:49:36.737Z (over 4 years ago)
- Default Branch: master
- Last Synced: 2024-07-31T07:15:46.343Z (4 months ago)
- Stars: 16
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gitea - Gitea Debian/Ubuntu packages - Debian/Ubuntu packages (Packages / For internal use)
- awesome-gitea - Gitea Debian/Ubuntu packages - Debian/Ubuntu packages (Packages / For internal use)
- awesome-gitea - Gitea Debian/Ubuntu packages - Debian/Ubuntu packages (Packages / For internal use)
README
# [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
```
sudo curl -sL -o /etc/apt/trusted.gpg.d/morph027-gitea.asc https://packaging.gitlab.io/gitea/gpg.key
```### Add repo to apt
```
echo "deb 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 morph027-keyring
```### Start
```
systemctl enable --now gitea
```## Extras
### unattended-upgrades
To enable automatic upgrades using `unattended-upgrades`, just add the following config file:
```bash
cat > /etc/apt/apt.conf.d/50gitea <