1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/borgwarehouse_ynh.git synced 2024-09-03 18:16:17 +02:00
This commit is contained in:
Éric Gaspar 2023-10-17 13:22:21 +02:00
parent 9faca372f3
commit 9b39c580f6

View file

@ -28,12 +28,11 @@ ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
ynh_script_progression --message="Setting up source files..." --weight=1
# Download, check integrity, uncompress and patch the source from manifest.toml
ynh_setup_source --dest_dir="$install_dir"
ynh_setup_source --dest_dir="$install_dir/app"
mkdir $install_dir/.ssh && chmod 700 $install_dir/.ssh
touch $install_dir/.ssh/authorized_keys && chmod 600 $install_dir/.ssh/authorized_keys
mkdir $install_dir/repos && chmod 700 $install_dir/repos
mkdir $install_dir/app
chown -R $app:www-data "$install_dir"
@ -71,7 +70,7 @@ chown $app:$app "$install_dir/.env.local"
#=================================================
ynh_script_progression --message="Installing $app..." --weight=10
pushd $install_dir/app
pushd $install_dir/app/
ynh_use_nodejs
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH $ynh_npm ci
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH NODE_ENV=production $ynh_npm run build