1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gogs_ynh.git synced 2024-09-03 20:36:23 +02:00
gogs_ynh/README_fr.md

77 lines
3.1 KiB
Markdown
Raw Normal View History

2022-06-01 08:12:14 +02:00
<!--
N.B.: This README was automatically generated by https://github.com/YunoHost/apps/tree/master/tools/README-generator
It shall NOT be edited by hand.
-->
2021-11-07 10:32:58 +01:00
# Gogs pour YunoHost
2022-06-01 08:12:14 +02:00
[![Niveau d'intégration](https://dash.yunohost.org/integration/gogs.svg)](https://dash.yunohost.org/appci/app/gogs) ![Statut du fonctionnement](https://ci-apps.yunohost.org/ci/badges/gogs.status.svg) ![Statut de maintenance](https://ci-apps.yunohost.org/ci/badges/gogs.maintain.svg)
2021-11-07 10:32:58 +01:00
[![Installer Gogs avec YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=gogs)
*[Read this readme in english.](./README.md)*
> *Ce package vous permet d'installer Gogs rapidement et simplement sur un serveur YunoHost.
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
## Vue d'ensemble
2021-11-26 12:34:01 +01:00
Gogs (Go Git Service) est une forge multiplateforme basée sur git écrite en Go. Sa particularité est dêtre léger et pouvant fonctionner sur carte ARM, ce qui fait quil est adapté à lauto-hébergement. Gogs a une interface web similaire à celle de GitHub.
2021-11-07 10:32:58 +01:00
2022-08-05 15:19:16 +02:00
**Version incluse :** 0.12.10~ynh1
2021-11-07 10:32:58 +01:00
**Démo :** https://try.gogs.io/user/login
2021-11-07 12:42:20 +01:00
## Captures d'écran
2022-06-01 08:12:14 +02:00
![Capture d'écran de Gogs](./doc/screenshots/screenshot.png)
2021-11-07 12:42:20 +01:00
2021-11-21 21:56:13 +01:00
## Avertissements / informations importantes
## Notes on SSH usage
2021-11-26 12:34:01 +01:00
2021-11-26 22:12:55 +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:
2021-11-21 21:56:13 +01:00
```bash
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.
2021-11-26 22:12:55 +01:00
If you use SSH on another port than 22, you need to add theses lines to your ssh config in `~/.ssh/config`:
2021-11-21 21:56:13 +01:00
```bash
Host domain.tld
port 2222 # change this with the port you use
```
## Private Mode
2021-11-26 12:34:01 +01:00
2021-11-26 22:12:55 +01:00
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.
2021-11-21 21:56:13 +01:00
2021-11-07 10:32:58 +01:00
## Documentations et ressources
2022-06-01 08:12:14 +02:00
* Site officiel de l'app : <http://gogs.io>
* Documentation officielle de l'admin : <https://gogs.io/docs>
* Dépôt de code officiel de l'app : <https://github.com/gogs/gogs>
* Documentation YunoHost pour cette app : <https://yunohost.org/app_gogs>
* Signaler un bug : <https://github.com/YunoHost-Apps/gogs_ynh/issues>
2021-11-07 10:32:58 +01:00
## Informations pour les développeurs
Merci de faire vos pull request sur la [branche testing](https://github.com/YunoHost-Apps/gogs_ynh/tree/testing).
Pour essayer la branche testing, procédez comme suit.
2022-06-01 08:12:14 +02:00
``` bash
2021-11-07 10:32:58 +01:00
sudo yunohost app install https://github.com/YunoHost-Apps/gogs_ynh/tree/testing --debug
ou
sudo yunohost app upgrade gogs -u https://github.com/YunoHost-Apps/gogs_ynh/tree/testing --debug
```
2022-06-01 08:12:14 +02:00
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>