1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gogs_ynh.git synced 2024-09-03 20:36:23 +02:00
Gogs package for YunoHost
Find a file
2020-11-03 23:13:06 +01:00
conf Update x86-64.src 2020-11-03 23:13:06 +01:00
scripts Use config file for LDAP auth 2018-07-02 21:32:25 +02:00
.gitattributes Initial commit 2016-08-15 15:38:50 +02:00
.gitignore Initial commit 2016-08-15 15:38:50 +02:00
check_process Fix upgrade from previous version 2018-02-10 17:15:09 +01:00
LICENSE Initial commit 2016-08-15 15:38:50 +02:00
manifest.json Update manifest.json 2020-11-03 22:59:36 +01:00
README.md Update README.md 2020-11-03 23:10:09 +01:00

Gogs for YunoHost

Integration level
Install Gogs with YunoHost

This package allows you to install Gogs quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult the guide to learn how to install it.

⚠️ Note that this package will not be longer be maintened by the actual maintener. The idea is to migrate to gitea which is more featured.

Overview

Gogs is a self-hosted Git service written in Go. Alternative to Github.

Shipped version: 0.11.66

Screenshots

Demo

For the old install you can migrate to gitea easly by juste upgrading your actuall gogs instance with the gitea source by this command:

sudo yunohost app upgrade -u https://github.com/YunoHost-Apps/gitea_ynh gogs

Note that this command contains some risk of data lost. So it's important to make a backup of the app before the install. To make a backup you can use this command:

sudo yunohost backup create --debug --apps gogs

For the new install just install gitea by this command:

sudo yunohost app install -l Gitea https://github.com/YunoHost-Apps/gitea_ynh

Notes on SSH usage

If you want to use Gogs with ssh and be able to pull/push with you ssh key, your ssh daemon must be properly configured to use private/public keys. Here is a sample configuration of /etc/ssh/sshd_config that works with Gogs:

PubkeyAuthentication yes
AuthorizedKeysFile %h/.ssh/authorized_keys
ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no

You also need to add your public key to your Gogs profile.

If you use ssh on another port than 22, you need to add theses lines to your ssh config in ~/.ssh/config:

Host domain.tld
    port 2222 # change this with the port you use

Info on upgrading from the old package version (gogs <0.9.xx)

Previous versions of this package used to build Gogs from sources instead of using the pre-compiled binary. It also left data in many places which was not good. The upgrade tries to take care of moving everything to the right place BUT it's strongly advised to do a backup of your repositories and of the Gogs directory before the update. Your avatars and issue attachments files may be lost in the process.

Also, in some cases, Gogs will not restart properly during the update. If so, you can rerun the update safely or try to start Gogs with sudo systemctl restart gogs.service.

Supported architectures

  • x86-64 - Build Status
  • ARMv8-A - Build Status

Developer info

Please send your pull request to the testing branch.

To try the testing branch, please proceed like that.

sudo yunohost app install https://github.com/YunoHost-Apps/gogs_ynh/tree/testing --debug
or
sudo yunohost app upgrade gogs -u https://github.com/YunoHost-Apps/gogs_ynh/tree/testing --debug