├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitlab-ci.yml ├── LICENSE ├── README.md ├── conf ├── app.ini ├── nginx.conf └── systemd.service ├── config_panel.toml ├── doc ├── ADMIN.md ├── DESCRIPTION.md └── screenshots │ └── screenshot.png ├── manifest.toml ├── scripts ├── _common.sh ├── backup ├── change_url ├── config ├── fix_user_db_for_local_users.sql ├── install ├── login_source.sql ├── remove ├── restore └── upgrade └── tests.toml /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/README.md -------------------------------------------------------------------------------- /conf/app.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/conf/app.ini -------------------------------------------------------------------------------- /conf/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/conf/nginx.conf -------------------------------------------------------------------------------- /conf/systemd.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/conf/systemd.service -------------------------------------------------------------------------------- /config_panel.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/config_panel.toml -------------------------------------------------------------------------------- /doc/ADMIN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/doc/ADMIN.md -------------------------------------------------------------------------------- /doc/DESCRIPTION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/doc/DESCRIPTION.md -------------------------------------------------------------------------------- /doc/screenshots/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/doc/screenshots/screenshot.png -------------------------------------------------------------------------------- /manifest.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/manifest.toml -------------------------------------------------------------------------------- /scripts/_common.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/_common.sh -------------------------------------------------------------------------------- /scripts/backup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/backup -------------------------------------------------------------------------------- /scripts/change_url: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/change_url -------------------------------------------------------------------------------- /scripts/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/config -------------------------------------------------------------------------------- /scripts/fix_user_db_for_local_users.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/fix_user_db_for_local_users.sql -------------------------------------------------------------------------------- /scripts/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/install -------------------------------------------------------------------------------- /scripts/login_source.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/login_source.sql -------------------------------------------------------------------------------- /scripts/remove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/remove -------------------------------------------------------------------------------- /scripts/restore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/restore -------------------------------------------------------------------------------- /scripts/upgrade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/scripts/upgrade -------------------------------------------------------------------------------- /tests.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YunoHost-Apps/gitea_ynh/HEAD/tests.toml --------------------------------------------------------------------------------