1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/misskey_ynh.git synced 2024-09-03 19:46:03 +02:00

Merge branch 'testing' into v13

This commit is contained in:
Éric Gaspar 2024-05-12 19:48:22 +02:00
commit 953e1aa3a7
6 changed files with 59 additions and 25 deletions

View file

@ -1,6 +1,7 @@
# All available README files by language
- [Read the README in English](README.md)
- [Lee el README en español](README_es.md)
- [Irakurri README euskaraz](README_eu.md)
- [Lire le README en français](README_fr.md)
- [Le o README en galego](README_gl.md)

47
README_es.md Normal file
View file

@ -0,0 +1,47 @@
<!--
Este archivo README esta generado automaticamente<https://github.com/YunoHost/apps/tree/master/tools/readme_generator>
No se debe editar a mano.
-->
# Misskey para Yunohost
[![Nivel de integración](https://dash.yunohost.org/integration/misskey.svg)](https://dash.yunohost.org/appci/app/misskey) ![Estado funcional](https://ci-apps.yunohost.org/ci/badges/misskey.status.svg) ![Estado En Mantención](https://ci-apps.yunohost.org/ci/badges/misskey.maintain.svg)
[![Instalar Misskey con Yunhost](https://install-app.yunohost.org/install-with-yunohost.svg)](https://install-app.yunohost.org/?app=misskey)
*[Leer este README en otros idiomas.](./ALL_README.md)*
> *Este paquete le permite instalarMisskey rapidamente y simplement en un servidor YunoHost.*
> *Si no tiene YunoHost, visita [the guide](https://yunohost.org/install) para aprender como instalarla.*
## Descripción general
Misskey is a decentralized microblogging platform. Since it exists within the Fediverse (a universe where various social media platforms are organized), it is mutually linked with other social media platforms.
**Versión actual:** 2024.3.1~ynh1
## Capturas
![Captura de Misskey](./doc/screenshots/screenshot-desktop.png)
## Documentaciones y recursos
- Sitio web oficial: <https://misskey-hub.net/>
- Repositorio del código fuente oficial de la aplicación : <https://github.com/misskey-dev/misskey>
- Catálogo YunoHost: <https://apps.yunohost.org/app/misskey>
- Reportar un error: <https://github.com/YunoHost-Apps/misskey_ynh/issues>
## Información para desarrolladores
Por favor enviar sus correcciones a la [`branch testing`](https://github.com/YunoHost-Apps/misskey_ynh/tree/testing
Para probar la rama `testing`, sigue asÍ:
```bash
sudo yunohost app install https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug
o
sudo yunohost app upgrade misskey -u https://github.com/YunoHost-Apps/misskey_ynh/tree/testing --debug
```
**Mas informaciones sobre el empaquetado de aplicaciones:** <https://yunohost.org/packaging_apps>

View file

@ -7,7 +7,7 @@ name = "Misskey"
description.en = "Microblogging platform"
description.fr = "Platforme de Microblogging"
version = "13.14.2~ynh1"
version = "2024.3.1~ynh1"
maintainers = []
@ -22,11 +22,14 @@ fund = "https://patreon.com/syuilo"
yunohost = ">= 11.2"
architectures = ["amd64", "arm64"]
multi_instance = true
ldap = false
sso = true
disk = "50M" # FIXME: replace with an **estimate** minimum disk requirement. e.g. 20M, 400M, 1G, ...
ram.build = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ...
disk = "50M"
ram.build = "50M"
ram.runtime = "50M"
[install]
[install.domain]
@ -39,9 +42,10 @@ ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requiremen
default = "visitors"
[resources]
[resources.sources.main]
url = "https://github.com/misskey-dev/misskey/archive/refs/tags/13.14.2.tar.gz"
sha256 = "05afd89b8d4fe0163caef691ea1eabf59eb166498ed49867c0ff2f102c44f066"
url = "https://github.com/misskey-dev/misskey/archive/refs/tags/2024.3.1.tar.gz"
sha256 = "f962f38fbf71f600fcc8c1969f418f46565fa58b83dc93528d29a3e65fd79571"
autoupdate.strategy = "latest_github_tag"
[resources.system_user]

View file

@ -26,25 +26,11 @@ ynh_remove_logrotate
# Remove the dedicated NGINX config
ynh_remove_nginx_config
#=================================================
# REMOVE THE REDIS DATABASE
#=================================================
ynh_script_progression --message="Removing the redis database..." --weight=1
ynh_redis_remove_db "$redis_db"
#=================================================
# REMOVE DEPENDENCIES
#=================================================
ynh_script_progression --message="Removing NodeJS..." --weight=1
# Remove metapackage and its dependencies
ynh_remove_nodejs
#=================================================
# REMOVE VARIOUS FILES
#=================================================
# Remove the log files
ynh_secure_remove --file="/var/log/$app"

View file

@ -42,6 +42,7 @@ ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf"
ynh_restore_file --origin_path="/etc/systemd/system/$app.service"
systemctl enable "$app.service" --quiet
yunohost service add "$app" --description="A interplanetary blogging platform" --log="/var/log/$app/$app.log"
ynh_restore_file --origin_path="/etc/logrotate.d/$app"

View file

@ -23,11 +23,6 @@ ynh_script_progression --message="Stopping $app's systemd service..." --weight=1
# Stop bservice before backup, to not loose message in case of failed upgrade and restore
ynh_systemd_action --service_name="$app" --action="stop" --log_path=systemd
#=================================================
# ENSURE DOWNWARD COMPATIBILITY
#=================================================
# ynh_script_progression --message="Ensuring downward compatibility..." --weight=1
#=================================================
# UPGRADE DEPENDENCIES
#=================================================