mirror of
https://github.com/YunoHost-Apps/calckey_ynh.git
synced 2024-09-03 18:16:18 +02:00
Merge branch 'testing' into master
This commit is contained in:
commit
815c85492b
6 changed files with 20 additions and 15 deletions
|
@ -5,7 +5,7 @@ It shall NOT be edited by hand.
|
||||||
|
|
||||||
# Calckey for YunoHost
|
# Calckey for YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/calckey)  
|
[](https://dash.yunohost.org/appci/app/calckey)  
|
||||||
[](https://install-app.yunohost.org/?app=calckey)
|
[](https://install-app.yunohost.org/?app=calckey)
|
||||||
|
|
||||||
*[Lire ce readme en français.](./README_fr.md)*
|
*[Lire ce readme en français.](./README_fr.md)*
|
||||||
|
|
18
README_fr.md
18
README_fr.md
|
@ -5,15 +5,15 @@ It shall NOT be edited by hand.
|
||||||
|
|
||||||
# Calckey pour YunoHost
|
# Calckey pour YunoHost
|
||||||
|
|
||||||
[](https://dash.yunohost.org/appci/app/calckey)  
|
[](https://dash.yunohost.org/appci/app/calckey)  
|
||||||
[](https://install-app.yunohost.org/?app=calckey)
|
[](https://install-app.yunohost.org/?app=calckey)
|
||||||
|
|
||||||
*[Read this readme in english.](./README.md)*
|
*[Read this readme in english.](./README.md)*
|
||||||
|
|
||||||
> *Ce package vous permet d'installer Calckey rapidement et simplement sur un serveur YunoHost.
|
> *Ce package vous permet d’installer Calckey rapidement et simplement sur un serveur YunoHost.
|
||||||
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l’installer et en profiter.*
|
||||||
|
|
||||||
## Vue d'ensemble
|
## Vue d’ensemble
|
||||||
|
|
||||||
Un fork grandement amélioré de Misskey avec une meilleure UI/UX, sécurité, fonctionnalités, et plus encore ! https://i.calckey.cloud/
|
Un fork grandement amélioré de Misskey avec une meilleure UI/UX, sécurité, fonctionnalités, et plus encore ! https://i.calckey.cloud/
|
||||||
|
|
||||||
|
@ -26,9 +26,9 @@ Un fork grandement amélioré de Misskey avec une meilleure UI/UX, sécurité, f
|
||||||
|
|
||||||
**Démo :** https://i.calckey.cloud/
|
**Démo :** https://i.calckey.cloud/
|
||||||
|
|
||||||
## Captures d'écran
|
## Captures d’écran
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
## Avertissements / informations importantes
|
## Avertissements / informations importantes
|
||||||
|
|
||||||
|
@ -56,8 +56,8 @@ screen -r
|
||||||
|
|
||||||
## Documentations et ressources
|
## Documentations et ressources
|
||||||
|
|
||||||
* Site officiel de l'app : <https://i.calckey.cloud/>
|
* Site officiel de l’app : <https://i.calckey.cloud/>
|
||||||
* Dépôt de code officiel de l'app : <https://codeberg.org/calckey/calckey>
|
* Dépôt de code officiel de l’app : <https://codeberg.org/calckey/calckey>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_calckey>
|
* Documentation YunoHost pour cette app : <https://yunohost.org/app_calckey>
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/calckey_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/calckey_ynh/issues>
|
||||||
|
|
||||||
|
@ -73,4 +73,4 @@ ou
|
||||||
sudo yunohost app upgrade calckey -u https://github.com/YunoHost-Apps/calckey_ynh/tree/testing --debug
|
sudo yunohost app upgrade calckey -u https://github.com/YunoHost-Apps/calckey_ynh/tree/testing --debug
|
||||||
```
|
```
|
||||||
|
|
||||||
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
**Plus d’infos sur le packaging d’applications :** <https://yunohost.org/packaging_apps>
|
|
@ -11,7 +11,8 @@
|
||||||
setup_private=1
|
setup_private=1
|
||||||
setup_public=1
|
setup_public=1
|
||||||
upgrade=1
|
upgrade=1
|
||||||
# upgrade=1 from_commit=CommitHash
|
# v13.0.5
|
||||||
|
upgrade=1 from_commit=89f4f52e3cb3c9daf8eff43aab67bcda475da410
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
multi_instance=0
|
multi_instance=0
|
||||||
change_url=0
|
change_url=0
|
||||||
|
|
4
scripts/install
Executable file → Normal file
4
scripts/install
Executable file → Normal file
|
@ -134,9 +134,9 @@ pushd "$final_path"
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
corepack enable
|
corepack enable
|
||||||
corepack prepare pnpm@latest --activate
|
corepack prepare pnpm@latest --activate
|
||||||
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH pnpm install
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production pnpm install
|
||||||
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production pnpm build
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production pnpm build
|
||||||
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH pnpm run init
|
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production pnpm run init
|
||||||
popd
|
popd
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
|
|
7
scripts/restore
Executable file → Normal file
7
scripts/restore
Executable file → Normal file
|
@ -74,7 +74,12 @@ ynh_script_progression --message="Reinstalling dependencies..." --weight=5
|
||||||
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
||||||
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
||||||
|
|
||||||
# enable pnpm again
|
#=================================================
|
||||||
|
# REINSTALL PNPM
|
||||||
|
#=================================================
|
||||||
|
ynh_script_progression --message="Reinstalling pnpm..." --weight=1
|
||||||
|
|
||||||
|
# Define and install pnpm
|
||||||
pushd "$final_path"
|
pushd "$final_path"
|
||||||
ynh_use_nodejs
|
ynh_use_nodejs
|
||||||
corepack enable
|
corepack enable
|
||||||
|
|
|
@ -120,7 +120,6 @@ ynh_script_progression --message="Upgrading dependencies..." --weight=5
|
||||||
|
|
||||||
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
|
||||||
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
ynh_exec_warn_less ynh_install_app_dependencies $pkg_dependencies
|
||||||
ynh_install_extra_app_dependencies --repo="deb https://dl.yarnpkg.com/debian/ stable main" --package="yarn" --key="https://dl.yarnpkg.com/debian/pubkey.gpg"
|
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# NGINX CONFIGURATION
|
# NGINX CONFIGURATION
|
||||||
|
|
Loading…
Add table
Reference in a new issue