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

Merge pull request #124 from YunoHost-Apps/node-fix

Update Node
This commit is contained in:
Navan Chauhan 2024-06-09 13:23:51 -06:00 committed by GitHub
commit fe89f20f36
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 5 deletions

View file

@ -1,6 +1,6 @@
NODE_ENV=production NODE_ENV=production
PORT=__PORT__ PORT=__PORT__
HOST=localhost HOST=127.0.0.1
CONFIG_PATH=__DATA_DIR__/config CONFIG_PATH=__DATA_DIR__/config
AUDIOBOOK_PATH=__DATA_DIR__/audiobooks AUDIOBOOK_PATH=__DATA_DIR__/audiobooks
METADATA_PATH=__DATA_DIR__/metadata METADATA_PATH=__DATA_DIR__/metadata

View file

@ -7,7 +7,7 @@
# dependencies used by the app # dependencies used by the app
# nodejs version # nodejs version
nodejs_version=16 nodejs_version=22
#================================================= #=================================================
# PERSONAL HELPERS # PERSONAL HELPERS

View file

@ -16,9 +16,6 @@ ynh_script_progression --message="Installing dependencies..." --weight=10
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
# Upgrade NPM
ynh_npm install --global npm@7.21.1
#================================================= #=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE # DOWNLOAD, CHECK AND UNPACK SOURCE
#================================================= #=================================================