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
ericgaspar fbfc65164c
0.12.8
2022-06-01 08:12:09 +02:00
.github Update updater.sh 2022-05-06 08:31:13 +02:00
conf 0.12.8 2022-06-01 08:12:09 +02:00
doc Fix 2021-11-26 22:12:48 +01:00
scripts cleaning up 2022-04-10 13:42:21 +02:00
check_process Fix 2021-11-07 10:32:50 +01:00
LICENSE Fix 2022-03-13 12:03:07 +01:00
manifest.json 0.12.8 2022-06-01 08:12:09 +02:00
README.md Auto-update README 2022-05-06 06:30:26 +00:00
README_fr.md Auto-update README 2022-05-06 06:30:26 +00: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 (Go Git Service) is a git-based multiplatform forge written in Go. Its particularity is that it is light and can run on an ARM card, which makes it suitable for self-hosting. Gogs has a web interface similar to that of GitHub.

Features

  • User dashboard, user profile and activity timeline.
  • User, organization and repository management.
  • Repository and organization webhooks, including Slack, Discord and Dingtalk.
  • Repository Git hooks, deploy keys and Git LFS.
  • Repository issues, pull requests, wiki, protected branches and collaboration.
  • Migrate and mirror repositories with wiki from other code hosts.
  • Web editor for quick editing repository files and wiki.
  • Jupyter Notebook and PDF rendering.
  • Authentication via SMTP, LDAP.
  • Customize HTML templates, static files and many others.

Shipped version: 0.12.7~ynh1

Demo: https://try.gogs.io/user/login

Screenshots

Disclaimers / important information

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

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.

Documentation and resources

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

More info regarding app packaging: https://yunohost.org/packaging_apps