mirror of
https://github.com/YunoHost-Apps/reiverr_ynh.git
synced 2024-09-03 20:16:14 +02:00
disable multi_instance + fix restore
This commit is contained in:
parent
eb39461091
commit
2d2c17c6e5
2 changed files with 17 additions and 1 deletions
|
@ -18,7 +18,7 @@ code = "https://github.com/aleksilassila/reiverr"
|
|||
[integration]
|
||||
yunohost = ">= 11.2.4"
|
||||
architectures = "all"
|
||||
multi_instance = true
|
||||
multi_instance = false
|
||||
|
||||
ldap = "not_relevant"
|
||||
sso = "not_relevant"
|
||||
|
|
|
@ -10,6 +10,22 @@
|
|||
source ../settings/scripts/_common.sh
|
||||
source /usr/share/yunohost/helpers
|
||||
|
||||
#=================================================
|
||||
# INSTALL DEPENDENCIES
|
||||
#=================================================
|
||||
ynh_script_progression --message="Installing dependencies..." --weight=5
|
||||
|
||||
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
|
||||
|
||||
# Upgrade NPM
|
||||
ynh_npm install --global npm@latest
|
||||
|
||||
# Install Yarn
|
||||
ynh_npm install --global yarn
|
||||
|
||||
# Install vite
|
||||
ynh_npm install --global vite
|
||||
|
||||
#=================================================
|
||||
# RESTORE THE APP MAIN DIR
|
||||
#=================================================
|
||||
|
|
Loading…
Reference in a new issue