2020-10-11 22:38:04 +02:00
# Gogs for YunoHost
2016-08-15 15:38:50 +02:00
2020-10-11 22:45:51 +02:00
[![Integration level ](https://dash.yunohost.org/integration/gogs.svg )](https://dash.yunohost.org/appci/app/gogs) ![](https://ci-apps.yunohost.org/ci/badges/gogs.status.svg) ![](https://ci-apps.yunohost.org/ci/badges/gogs.maintain.svg)
[![Install Gogs with YunoHost ](https://install-app.yunohost.org/install-with-yunohost.png )](https://install-app.yunohost.org/?app=gogs)
2016-08-15 15:38:50 +02:00
2020-10-11 22:45:51 +02:00
*[Lire ce readme en français.](./README_fr.md)*
2018-02-07 00:31:25 +01:00
2020-10-11 22:45:51 +02:00
> *This package allows you to install Gogs quickly and simply on a YunoHost server.
If you don't have YunoHost, please consult [the guide ](https://yunohost.org/#/install ) to learn how to install it.*
2018-02-07 00:31:25 +01:00
2020-10-11 22:45:51 +02:00
## Overview
Gogs is a self-hosted Git service written in Go. Alternative to Github.
2019-05-14 22:13:29 +02:00
2020-10-11 22:45:51 +02:00
## Info
**Shipped version:** 0.12.3
# IMPORTANT INFORMATION
2019-05-14 22:13:29 +02:00
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
```
2016-10-16 20:35:30 +02:00
## Notes on SSH usage
2016-11-05 21:34:51 +01:00
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:
2016-10-16 16:43:48 +02:00
2016-10-16 20:35:30 +02:00
```bash
2016-10-16 16:43:48 +02:00
PubkeyAuthentication yes
AuthorizedKeysFile %h/.ssh/authorized_keys
ChallengeResponseAuthentication no
PasswordAuthentication no
UsePAM no
```
2016-10-16 20:35:30 +02:00
2016-11-05 21:34:51 +01:00
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` :
2016-10-16 16:43:48 +02:00
2016-10-16 20:35:30 +02:00
```bash
2016-10-16 16:43:48 +02:00
Host domain.tld
port 2222 # change this with the port you use
```
2016-11-05 21:34:51 +01:00
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` .
2016-08-15 15:38:50 +02:00
2018-04-27 23:19:07 +02:00
## 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.
2018-02-07 00:31:25 +01:00
2020-10-11 22:38:04 +02:00
## Links
2018-02-07 00:31:25 +01:00
2020-10-11 22:38:04 +02:00
* Report a bug: https://github.com/YunoHost-Apps/gogs_ynh/issues
* App website: http://gogs.io
* Upstream app repository: https://github.com/gogs/gogs
* YunoHost website: https://yunohost.org/
2016-08-15 15:38:50 +02:00
2020-10-11 22:38:04 +02:00
---
2016-08-15 15:38:50 +02:00
2020-10-11 22:38:04 +02:00
## Developer info
2016-08-15 15:38:50 +02:00
2020-10-11 22:38:04 +02:00
Please send your pull request to the [testing branch ](https://github.com/YunoHost-Apps/gogs_ynh/tree/testing ).
2016-08-15 15:38:50 +02:00
2020-10-11 22:38:04 +02:00
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
2016-08-15 15:38:50 +02:00
```