Compare commits

...

4 commits

10 changed files with 38 additions and 23 deletions

View file

@ -1,10 +1,18 @@
<!--
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.
-->
# Forgejo for YunoHost # Forgejo for YunoHost
**This is the Trax custom variant of Forgejo-for-Yunohost.**
The Trax variant has:
- [ForgeFed](https://forgefed.org/) federation enabled
- [Libravatar](https://www.libravatar.org/) federated avatars enabled
- unstable/experimental build versions
- some "Trax" custom branding
The remaining documentation is from the standard variant.
---
[![Integration level](https://dash.yunohost.org/integration/forgejo.svg)](https://ci-apps.yunohost.org/ci/apps/forgejo/) ![Working status](https://ci-apps.yunohost.org/ci/badges/forgejo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/forgejo.maintain.svg) [![Integration level](https://dash.yunohost.org/integration/forgejo.svg)](https://ci-apps.yunohost.org/ci/apps/forgejo/) ![Working status](https://ci-apps.yunohost.org/ci/badges/forgejo.status.svg) ![Maintenance status](https://ci-apps.yunohost.org/ci/badges/forgejo.maintain.svg)
[![Install Forgejo with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=forgejo) [![Install Forgejo with YunoHost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=forgejo)
@ -34,7 +42,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Shipped version:** 8.0.3~ynh1 **Shipped version:** 9.0.0~ynh1
## Screenshots ## Screenshots

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Versión actual:** 8.0.3~ynh1 **Versión actual:** 9.0.0~ynh1
## Capturas ## Capturas

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Paketatutako bertsioa:** 8.0.3~ynh1 **Paketatutako bertsioa:** 9.0.0~ynh1
## Pantaila-argazkiak ## Pantaila-argazkiak

View file

@ -34,7 +34,7 @@ Présenté par une communauté inclusive sous l'égide de Codeberg e.V., une org
- Modèle personnalisé HTML, de fichiers statiques et de nombreux autres. - Modèle personnalisé HTML, de fichiers statiques et de nombreux autres.
**Version incluse:** 8.0.3~ynh1 **Version incluse:** 9.0.0~ynh1
## Captures décran ## Captures décran

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Versión proporcionada:** 8.0.3~ynh1 **Versión proporcionada:** 9.0.0~ynh1
## Capturas de pantalla ## Capturas de pantalla

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Versi terkirim:** 8.0.3~ynh1 **Versi terkirim:** 9.0.0~ynh1
## Tangkapan Layar ## Tangkapan Layar

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**Поставляемая версия:** 8.0.3~ynh1 **Поставляемая версия:** 9.0.0~ynh1
## Снимки экрана ## Снимки экрана

View file

@ -34,7 +34,7 @@ Brought to you by an inclusive community under the umbrella of Codeberg e.V., a
- Customize HTML templates, static files and many others. - Customize HTML templates, static files and many others.
**分发版本:** 8.0.3~ynh1 **分发版本:** 9.0.0~ynh1
## 截图 ## 截图

View file

@ -1,9 +1,15 @@
; https://codeberg.org/forgejo/forgejo/src/branch/forgejo/custom/conf/app.example.ini ; https://codeberg.org/forgejo/forgejo/src/branch/forgejo/custom/conf/app.example.ini
APP_NAME = Forgejo APP_NAME = Trax Forgejo
RUN_USER = __APP__ RUN_USER = __APP__
RUN_MODE = prod RUN_MODE = prod
WORK_PATH = __INSTALL_DIR__ WORK_PATH = __INSTALL_DIR__
[federation]
ENABLED = true
[F3]
ENABLED = true
[database] [database]
DB_TYPE = postgres DB_TYPE = postgres
HOST = 127.0.0.1:5432 HOST = 127.0.0.1:5432
@ -51,6 +57,7 @@ ENABLE_REVERSE_PROXY_EMAIL = true
[picture] [picture]
AVATAR_UPLOAD_PATH = __DATA_DIR__/data/avatars AVATAR_UPLOAD_PATH = __DATA_DIR__/data/avatars
REPOSITORY_AVATAR_UPLOAD_PATH = __DATA_DIR__/data/repo-avatars REPOSITORY_AVATAR_UPLOAD_PATH = __DATA_DIR__/data/repo-avatars
ENABLE_FEDERATED_AVATAR = true
[attachment] [attachment]
PATH = __DATA_DIR__/attachments PATH = __DATA_DIR__/attachments

View file

@ -5,12 +5,12 @@ name = "Forgejo"
description.en = "Lightweight software forge" description.en = "Lightweight software forge"
description.fr = "Forge logiciel légère" description.fr = "Forge logiciel légère"
version = "8.0.3~ynh1" version = "9.0.0~ynh1"
maintainers = [ "Emmanuel Averty" ] maintainers = [ "Julian Foad", "Emmanuel Averty" ]
[upstream] [upstream]
license = "MIT" license = "GPL-3.0-or-later"
website = "https://forgejo.org" website = "https://forgejo.org"
admindoc = "https://forgejo.org/docs/latest/admin/" admindoc = "https://forgejo.org/docs/latest/admin/"
userdoc = "https://forgejo.org/docs/latest/user/" userdoc = "https://forgejo.org/docs/latest/user/"
@ -48,12 +48,12 @@ ram.runtime = "2G"
[resources] [resources]
[resources.sources.main] [resources.sources.main]
amd64.url = "https://codeberg.org/forgejo/forgejo/releases/download/v8.0.3/forgejo-8.0.3-linux-amd64.xz" amd64.url = "https://codeberg.org/forgejo/forgejo/releases/download/v9.0.0/forgejo-9.0.0-linux-amd64.xz"
amd64.sha256 = "67ced7daed511aa1c296f225e13d6ea32aac46a6ba3875301b253af0b995e790" amd64.sha256 = "b2fd8b26665de43fb3c57196839554964ea2421de923718e418d9d7f7432fdc9"
arm64.url = "https://codeberg.org/forgejo/forgejo/releases/download/v8.0.3/forgejo-8.0.3-linux-arm64.xz" arm64.url = "https://codeberg.org/forgejo/forgejo/releases/download/v9.0.0/forgejo-9.0.0-linux-arm64.xz"
arm64.sha256 = "585f8deca29ffda985989f84573ab91e4bbc10637634d4befd5bf23bb858399e" arm64.sha256 = "d17ec959f7006a20429438407b3f11936a2634326381410f111b615953041578"
armhf.url = "https://codeberg.org/forgejo/forgejo/releases/download/v8.0.3/forgejo-8.0.3-linux-arm-6.xz" armhf.url = "https://codeberg.org/forgejo/forgejo/releases/download/v9.0.0/forgejo-9.0.0-linux-arm-6.xz"
armhf.sha256 = "767c4d95d901ca96f0562e77a2b1137f403141c2abc4fcd62303b09d460d2fe9" armhf.sha256 = "5cf69477af880b2865ee2548bef3ef68d9031d7fa314fc06c977aa2d673c7eb6"
format = "whatever" format = "whatever"
extract = false extract = false
rename = "forgejo.xz" rename = "forgejo.xz"