chibisafe_ynh/scripts/install
2024-11-17 13:52:11 -05:00

68 lines
2.3 KiB
Bash
Executable file

#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INTALL NODEJS
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=7
ynh_hide_warnings ynh_nodejs_install
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression "Setting up source files..."
ynh_setup_source --dest_dir="$install_dir"
chown -R "$app:www-data" "$install_dir"
#=================================================
# SYSTEM CONFIGURATION
#=================================================
ynh_script_progression "Adding system configurations related to $app..."
ynh_config_add_nginx
ynh_config_add_systemd --service= "${app}-backend" --template="backend.service"
ynh_config_add_systemd --service= "${app}-frontend" --template="frontend.service"
yunohost service add "${app}-backend" --description="a beautiful and performant vault to save all your files in the cloud" --log="/var/log/$app/$app.log"
yunohost service add "${app}-frontend" --description="a beautiful and performant vault to save all your files in the cloud" --log="/var/log/$app/$app.log"
ynh_script_progression "Installing $app..."
pushd $install_dir
ynh_hide_warnings ynh_exec_as_app yarn install
ynh_hide_warnings ynh_exec_as_app yarn workspace @chibisafe/backend generate
ynh_hide_warnings ynh_exec_as_app yarn workspace @chibisafe/backend migrate
ynh_hide_warnings ynh_exec_as_app yarn build
ynh_hide_warnings ynh_exec_as_app bash -c "echo "BASE_API_URL=http://127.0.0.1:8000" >> ./packages/next/.env"
popd
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression "Starting $app's systemd service..."
ynh_systemctl --service="${app}-backend" --action="start"
ynh_systemctl --service="${app}-frontend" --action="start"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression "Installation of $app completed"