mirror of
https://github.com/YunoHost-Apps/crabfit_ynh.git
synced 2024-09-03 18:16:21 +02:00
96 lines
3.8 KiB
Bash
Executable file
96 lines
3.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#=================================================
|
|
# GENERIC START
|
|
#=================================================
|
|
# IMPORT GENERIC HELPERS
|
|
#=================================================
|
|
|
|
source _common.sh
|
|
source /usr/share/yunohost/helpers
|
|
|
|
#=================================================
|
|
# STOP SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name="${app}-front" --action="stop" --log_path="/var/log/$app/${app}-front"
|
|
ynh_systemd_action --service_name="${app}-back" --action="stop" --log_path="/var/log/$app/${app}-back"
|
|
|
|
#=================================================
|
|
# "REBUILD" THE APP (DEPLOY NEW SOURCES, RERUN NPM BUILD...)
|
|
#=================================================
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading source files..." --weight=1
|
|
|
|
# Download, check integrity, uncompress and patch the source from app.src
|
|
ynh_setup_source --dest_dir="$install_dir"
|
|
|
|
chown -R $app:$app "$install_dir"
|
|
chmod -R o-rwx "$install_dir"
|
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
ynh_use_nodejs
|
|
|
|
#=================================================
|
|
# REAPPLY SYSTEM CONFIGURATIONS
|
|
#=================================================
|
|
ynh_script_progression --message="Upgrading system configurations related to $app..." --weight=1
|
|
|
|
# Create a dedicated NGINX config using the conf/nginx.conf template
|
|
ynh_add_nginx_config
|
|
|
|
# Create a dedicated systemd config
|
|
ynh_add_config --template="crabfit.target" --destination="/etc/systemd/system/$app.target"
|
|
ynh_add_systemd_config --service="${app}-front" --template="crabfit-front.service"
|
|
ynh_add_systemd_config --service="${app}-back" --template="crabfit-back.service"
|
|
|
|
yunohost service add "${app}-front" --description="Crabfit NodeJS Frontend" --log="/var/log/$app/${app}-front.log"
|
|
yunohost service add "${app}-back" --description="Crabfit Rust Backend" --log="/var/log/$app/${app}-back.log"
|
|
|
|
ynh_use_logrotate
|
|
|
|
#=================================================
|
|
# RECONFIGURE THE APP (UPDATE CONF, APPLY MIGRATIONS...)
|
|
#=================================================
|
|
# UPDATE A CONFIG FILE
|
|
#=================================================
|
|
ynh_script_progression --message="Updating a configuration file..." --weight=1
|
|
|
|
# Replace the default .env.local with our own
|
|
rm $install_dir/frontend/.env.local
|
|
ynh_add_config --template="front.env" --destination="$install_dir/frontend/.env.local"
|
|
chmod 400 "$install_dir/frontend/.env.local"
|
|
chown $app:$app "$install_dir/frontend/.env.local"
|
|
|
|
ynh_add_config --template="back.env" --destination="$install_dir/api/.env"
|
|
chmod 400 "$install_dir/api/.env"
|
|
chown $app:$app "$install_dir/api/.env"
|
|
|
|
#=================================================
|
|
# BUILD BACKEND
|
|
#=================================================
|
|
ynh_script_progression --message="Building crabfit backend..." --weight=10
|
|
build_backend
|
|
|
|
#=================================================
|
|
# BUILD FRONTEND
|
|
#=================================================
|
|
ynh_script_progression --message="Building crabfit frontend..." --weight=2
|
|
|
|
build_frontend
|
|
|
|
#=================================================
|
|
# START SYSTEMD SERVICE
|
|
#=================================================
|
|
ynh_script_progression --message="Starting a systemd service..." --weight=1
|
|
|
|
ynh_systemd_action --service_name="${app}-front" --action="start" --log_path="/var/log/$app/${app}-front.log"
|
|
ynh_systemd_action --service_name="${app}-back" --action="start" --log_path="/var/log/$app/${app}-back.log"
|
|
|
|
#=================================================
|
|
# END OF SCRIPT
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Upgrade of $app completed" --last
|