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-12-29 23:35:55 +01:00
conf Update systemd.service 2020-12-29 23:34:14 +01:00
scripts Update install 2020-12-06 15:53:56 +01: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 2020-12-06 14:12:04 +01:00
LICENSE Initial commit 2016-08-15 15:38:50 +02:00
manifest.json Fix 2020-12-06 14:12:04 +01:00
README.md Update README.md 2020-12-29 23:35:55 +01:00

Gogs for YunoHost

Integration level
Install Gogs with YunoHost

Lire ce readme en français.

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.

Overview

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

Shipped version: 0.12.3

Screenshots

Demo

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

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.


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