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
2018-06-07 22:06:19 +02:00
conf Update app.ini from upstream 2018-06-07 22:06:19 +02:00
scripts Improve change_url 2018-05-19 21:52:26 +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 to gogs 0.11.53 2018-06-05 21:00:07 +02:00
README.md Update to gogs 0.11.53 2018-06-05 21:00:07 +02:00

Gogs package for YunoHost

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

Integration level

Install Gogs with YunoHost

Requirements

A functional instance of YunoHost

Installation

From the command-line:

sudo yunohost app install -l Gogs https://github.com/YunoHost-Apps/gogs_ynh

Upgrade

From the command-line:

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

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.

Sources and issues of the old package can be found here

Info

Gogs v0.11.53

Architecture: this package is compatible with amd64, i386 and arm. The package will try to detect it with the command uname -m and fail if it can't detect the architecture. If that happens please open an issue describing your hardware and the result of the command uname -m.

Private Mode

Actually it's possible to access to the git repositories by the git command over http also in private mode installation. It's important to know that in this mode the repository could be ALSO getted if you don't set the repository as private in the repos settings.

Issue

Any issue is welcome here : https://github.com/YunoHost-Apps/gogs_ynh/issues

License

Gogs is published under the MIT License: https://github.com/gogits/gogs/blob/master/LICENSE

This package is published under the MIT License.

Developper info

Please do your pull requests to the dev branch.

Test or upgrade to dev version:

sudo su - admin
git clone -b dev https://github.com/YunoHost-Apps/gogs_ynh
# to install
sudo yunohost app install -l Gogs /home/admin/gogs_ynh
# to upgrade
sudo yunohost app upgrade -f /home/admin/gogs_ynh gogs