2023-08-17 21:45:58 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC START
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# APP "BUILD" (DEPLOYING SOURCES, VENV, COMPILING ETC)
|
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Setting up 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:www-data "$install_dir"
|
|
|
|
|
2023-08-22 02:02:34 +02:00
|
|
|
ynh_install_nodejs --nodejs_version=$nodejs_version
|
|
|
|
ynh_use_nodejs
|
|
|
|
|
2023-08-17 21:45:58 +02:00
|
|
|
#=================================================
|
|
|
|
# SYSTEM CONFIGURATION
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
|
|
|
|
|
|
|
# Create a dedicated NGINX config using the conf/nginx.conf template
|
2023-08-24 23:40:29 +02:00
|
|
|
ynh_add_nginx_config
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
# Create a dedicated systemd config
|
2023-08-24 23:40:29 +02:00
|
|
|
ynh_add_config --template="../conf/crabfit.target" --destination="/etc/systemd/system/$app.target"
|
2023-08-22 02:02:34 +02:00
|
|
|
ynh_add_systemd_config --service="${app}-front" --template="crabfit-front.service"
|
|
|
|
ynh_add_systemd_config --service="${app}-back" --template="crabfit-back.service"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-22 02:02:34 +02:00
|
|
|
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
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-22 02:02:34 +02:00
|
|
|
# ADD CONFIGURATIONS
|
2023-08-17 21:45:58 +02:00
|
|
|
#=================================================
|
2023-08-22 02:02:34 +02:00
|
|
|
ynh_script_progression --message="Adding configuration files..." --weight=1
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-22 02:02:34 +02:00
|
|
|
# Replace the default .env.local with our own
|
|
|
|
rm $install_dir/frontend/.env.local
|
|
|
|
ynh_add_config --template="../conf/front.env" --destination="$install_dir/frontend/.env.local"
|
|
|
|
chmod 400 "$install_dir/frontend/.env.local"
|
|
|
|
chown $app:$app "$install_dir/frontend/.env.local"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
2023-08-22 02:02:34 +02:00
|
|
|
ynh_add_config --template="../conf/back.env" --destination="$install_dir/api/.env"
|
|
|
|
chmod 400 "$install_dir/api/.env"
|
|
|
|
chown $app:$app "$install_dir/api/.env"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
2023-08-22 02:02:34 +02:00
|
|
|
# BUILD BACKEND
|
2023-08-17 21:45:58 +02:00
|
|
|
#=================================================
|
2024-03-03 00:09:12 +01:00
|
|
|
build_backend
|
2023-08-22 02:02:34 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# BUILD FRONTEND
|
|
|
|
#=================================================
|
2024-03-03 00:09:12 +01:00
|
|
|
build_frontend
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2023-08-22 02:02:34 +02:00
|
|
|
ynh_script_progression --message="Starting systemd services..." --weight=1
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
# Start a systemd service
|
2023-08-24 23:40:29 +02:00
|
|
|
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"
|
2023-08-17 21:45:58 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|