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

107 lines
4.1 KiB
Text
Raw Normal View History

2023-05-29 11:46:05 +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"
#=================================================
# 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
ynh_add_nginx_config
#=================================================
# APP INITIAL CONFIGURATION
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
2023-05-29 12:15:02 +02:00
ynh_add_config --template=".env.local" --destination="$install_dir/.env.local"
2023-05-29 11:46:05 +02:00
chmod 400 "$install_dir/.env.local"
chown $app:$app "$install_dir/.env.local"
#=================================================
2023-05-29 16:28:58 +02:00
# CONFIGURATION FOR SUBPATH
#=================================================
2023-06-01 07:44:14 +02:00
ynh_secure_remove --file="$install_dir/public/manifest.json"
ynh_secure_remove --file="$install_dir/next.config.js"
2023-05-30 19:48:47 +02:00
2023-05-29 16:28:58 +02:00
if [ "$path" = "/" ]; then
next_path=""
else
next_path=$path
fi
2023-05-30 19:48:47 +02:00
ynh_add_config --template="manifest.json" --destination="$install_dir/public/manifest.json"
ynh_add_config --template="next.config.js" --destination="$install_dir/next.config.js"
2023-05-29 16:28:58 +02:00
2023-05-30 15:26:11 +02:00
ynh_replace_string --match_string="src={useColorModeValue(\"/banner_light.svg\", \"/banner_dark.svg\")}" --replace_string="src={useColorModeValue(\"$next_path/banner_light.svg\", \"$next_path/banner_dark.svg\")}" --target_file="$install_dir/components/Header.tsx"
2023-05-30 15:11:28 +02:00
2023-05-30 16:24:39 +02:00
ynh_replace_string --match_string="href=\"/favicon" --replace_string="href=\"$next_path/favicon" --target_file="$install_dir/components/CustomHead.tsx"
ynh_replace_string --match_string="href=\"/apple" --replace_string="href=\"$next_path/apple" --target_file="$install_dir/components/CustomHead.tsx"
2023-05-30 16:46:37 +02:00
ynh_replace_string --match_string="href=\"/manifest" --replace_string="href=\"$next_path/manifest" --target_file="$install_dir/components/CustomHead.tsx"
2023-06-01 07:44:14 +02:00
chown $app:www-data "$install_dir/public/manifest.json"
chown $app:www-data "$install_dir/next.config.js"
chmod 664 "$install_dir/public/manifest.json"
chmod 664 "$install_dir/next.config.js"
2023-05-29 16:28:58 +02:00
#=================================================
2023-05-29 11:46:05 +02:00
# BUILD AND INSTALL THE APP
#=================================================
ynh_script_progression --message="Building the app..." --weight=1
2023-05-29 11:46:05 +02:00
2023-06-01 07:44:14 +02:00
ynh_install_nodejs --nodejs_version=$nodejs_version
ynh_use_nodejs
2023-05-30 12:34:40 +02:00
yarn config set enableTelemetry 0
ynh_exec_warn_less yarn --cwd "$install_dir" install
yarn --cwd "$install_dir" run next telemetry disable
2023-05-30 12:34:40 +02:00
ynh_exec_warn_less yarn --cwd "$install_dir" build
2023-05-29 11:46:05 +02:00
2023-06-02 11:06:33 +02:00
chown -R $app:$app "$install_dir/node_modules"
chown -R $app:$app "$install_dir/.next"
2023-05-29 11:46:05 +02:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
2023-05-30 05:09:18 +02:00
ynh_add_systemd_config
yunohost service add $app --description="alternative to google translate" --log="/var/log/$app/$app.log"
2023-05-29 11:46:05 +02:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last