1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/terraforming-mars_ynh.git synced 2024-09-03 20:36:05 +02:00
terraforming-mars_ynh/scripts/install

120 lines
4.2 KiB
Text
Raw Normal View History

2023-10-16 21:07:03 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2023-10-17 20:50:05 +02:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=5
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2023-12-12 14:16:48 +01:00
#=================================================
# 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"
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-17 20:50:05 +02:00
# NGINX CONFIGURATION
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-17 20:50:05 +02:00
ynh_script_progression --message="Configuring NGINX web server..."
2023-10-16 21:07:03 +02:00
2023-10-17 20:50:05 +02:00
# Create a dedicated NGINX config
2023-10-16 21:07:03 +02:00
ynh_add_nginx_config
2023-10-17 20:50:05 +02:00
#=================================================
# SPECIFIC SETUP
#=================================================
2023-12-13 21:28:33 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..."
2023-12-21 13:19:44 +01:00
key=$(ynh_string_random --length=8 | base64)
2023-12-13 21:28:33 +01:00
ynh_app_setting_set --app=$app --key=key --value=$key
ynh_add_config --template="../conf/.env" --destination="$install_dir/.env"
chmod 600 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2023-10-17 20:50:05 +02:00
#=================================================
# BUILD APP
#=================================================
2023-10-16 21:07:03 +02:00
2023-12-12 14:43:37 +01:00
pushd $install_dir
2023-10-17 20:50:05 +02:00
ynh_use_nodejs
2023-10-16 21:07:03 +02:00
2023-10-23 20:28:24 +02:00
ynh_script_progression --message="npm install... This can be very long, be patient !" --weight=18
2023-12-12 15:45:22 +01:00
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm ci --quiet --production --prefer-offline --network-timeout=100000
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH $ynh_npm install --save-dev @types/html-escaper
2023-10-16 21:07:03 +02:00
2023-10-23 20:28:24 +02:00
ynh_script_progression --message="npm run build... This can be very long, be patient !" --weight=25
2023-12-13 16:39:53 +01:00
SOURCE_VERSION="$(cat $YNH_APP_BASEDIR/manifest.toml | toml_to_json | jq -r ".resources.sources.main.url" | awk -F/ '{ print $NF }')"
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH SOURCE_VERSION="$SOURCE_VERSION" $ynh_npm run build
2023-10-17 20:50:05 +02:00
popd
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-17 20:50:05 +02:00
# SETUP SYSTEMD
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-17 20:50:05 +02:00
ynh_script_progression --message="Configuring a systemd service..."
2023-10-16 21:07:03 +02:00
2023-10-17 20:50:05 +02:00
# Create a dedicated systemd config
ynh_add_systemd_config
2023-10-16 21:07:03 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
2023-10-17 20:50:05 +02:00
# LOGROTATE
#=================================================
ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1
2023-11-06 20:10:52 +01:00
mkdir -p "/var/log/$app"
touch "/var/log/$app/$app.log"
chown -R "$app:$app" "/var/log/$app"
chmod -R u=rwX,g=rX,o= "/var/log/$app"
2023-10-17 20:50:05 +02:00
# Use logrotate to manage application logfile(s)
2023-11-06 20:10:52 +01:00
ynh_use_logrotate
2023-10-17 20:50:05 +02:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2023-10-16 21:07:03 +02:00
#=================================================
2023-10-17 20:50:05 +02:00
ynh_script_progression --message="Integrating service in YunoHost..."
2023-10-16 21:07:03 +02:00
2023-11-06 20:40:52 +01:00
yunohost service add $app --description="Terraforming-Mars Service" --log=/var/log/$app/$app.log
2023-10-17 20:50:05 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..."
2023-10-16 21:07:03 +02:00
# Start a systemd service
2023-10-17 20:50:05 +02:00
ynh_exec_warn_less ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log" --line_match=""
2023-10-16 21:07:03 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2023-10-17 20:50:05 +02:00
ynh_script_progression --message="Installation of $app completed"