1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/archivebox_ynh.git synced 2024-09-03 18:15:54 +02:00

Add youtube-dl nodejs and npm as dependencies

This commit is contained in:
mhfowler 2021-08-22 20:37:49 +02:00
parent fae39011a7
commit 4ae13189f6
2 changed files with 3 additions and 8 deletions

View file

@ -5,7 +5,8 @@
#================================================= #=================================================
# dependencies used by the app # dependencies used by the app
pkg_dependencies="python3-venv expect" pkg_dependencies="python3-venv expect youtube-dl nodejs np\
m"
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS

View file

@ -93,7 +93,7 @@ ynh_app_setting_set --app=$app --key=port --value=$port
#================================================= #=================================================
# INSTALL DEPENDENCIES # INSTALL DEPENDENCIES
#================================================= #=================================================
ynh_script_progression --message="Installing dependencies..." --weight=1 ynh_script_progression --message="Installing dependencies..." --weight=8
ynh_install_app_dependencies $pkg_dependencies ynh_install_app_dependencies $pkg_dependencies
@ -179,11 +179,6 @@ chown -R $app:www-data "$datadir"
#================================================= #=================================================
# INITIALIZE ARCHIVEBOX # INITIALIZE ARCHIVEBOX
#================================================= #=================================================
(
set +o nounset
source "${final_path}/venv/bin/activate"
set -o nounset
ynh_script_progression --message="Initializing Archivebox" --weight=1 ynh_script_progression --message="Initializing Archivebox" --weight=1
cd $datadir && ynh_exec_as $app $archivebox_cmd init cd $datadir && ynh_exec_as $app $archivebox_cmd init
@ -222,7 +217,6 @@ fi
ynh_script_progression --message="Finishing Archivebox Setup" --weight=1 ynh_script_progression --message="Finishing Archivebox Setup" --weight=1
cd $datadir && ynh_exec_as $app $archivebox_cmd init --setup cd $datadir && ynh_exec_as $app $archivebox_cmd init --setup
)
#================================================= #=================================================
# ADD A CONFIGURATION # ADD A CONFIGURATION