├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md ├── conf ├── app.ini ├── ldap.conf ├── nginx.conf └── systemd.service ├── doc ├── ADMIN.md ├── DESCRIPTION.md ├── DESCRIPTION_fr.md └── screenshots │ └── screenshot.png ├── manifest.toml ├── scripts ├── backup ├── change_url ├── install ├── remove ├── restore └── upgrade └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.sw[op] 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/README.md -------------------------------------------------------------------------------- /conf/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/conf/app.ini -------------------------------------------------------------------------------- /conf/ldap.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/conf/ldap.conf -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/conf/systemd.service -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/DESCRIPTION_fr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/doc/DESCRIPTION_fr.md -------------------------------------------------------------------------------- /doc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/doc/screenshots/screenshot.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gogs_ynh/HEAD/tests.toml --------------------------------------------------------------------------------