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

56 lines
1.8 KiB
Text
Raw Normal View History

2022-09-12 20:00:09 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2023-02-23 17:01:18 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=1
2022-09-12 20:00:09 +02:00
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2024-06-16 10:36:27 +02:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=1
2023-03-12 11:37:36 +01:00
2024-06-16 10:36:27 +02:00
# Download, check integrity, uncompress and patch the source from manifest.toml
ynh_setup_source --dest_dir="$install_dir"
2023-03-12 11:37:36 +01:00
2024-06-16 10:36:27 +02:00
chown -R "$app:www-data" "$install_dir"
2022-09-12 20:00:09 +02:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-09-12 20:52:56 +02:00
ynh_script_progression --message="Configuring the app..." --weight=10
2022-09-12 20:00:09 +02:00
2024-06-16 10:49:39 +02:00
pushd "$install_dir"
ynh_use_nodejs
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH $ynh_npm install
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH $ynh_npm run build
2022-09-12 20:00:09 +02:00
popd
2024-02-18 09:33:03 +01:00
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2022-09-12 20:00:09 +02:00
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last