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

128 lines
4.1 KiB
Text
Raw Normal View History

2023-12-20 19:03:04 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
2023-12-20 19:08:54 +01:00
# RETRIEVE ARGUMENTS FROM THE MANIFEST
2023-12-20 19:03:04 +01:00
#=================================================
#=================================================
2023-12-20 19:08:54 +01:00
# STANDARD MODIFICATIONS
2023-12-20 19:03:04 +01:00
#=================================================
2023-12-20 19:08:54 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies... This might take some time." --weight=3
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=3
2023-12-20 19:03:04 +01:00
2023-12-21 22:58:46 +01:00
mkdir -p "$install_dir"
chown -R $app:www-data "$install_dir"
git config --system --add safe.directory $install_dir
git lfs install
# Download, check integrity, uncompress and patch the source from GitHub
git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git "$install_dir" --quiet
2023-12-20 19:03:04 +01:00
2023-12-21 22:58:46 +01:00
pushd "$install_dir"
git reset --hard --quiet $version_commit
make
popd
chmod -R o-rwx "$install_dir"
2023-12-20 19:08:54 +01:00
chown -R $app:www-data "$install_dir"
2023-12-20 19:03:04 +01:00
2023-12-21 22:58:46 +01:00
2023-12-20 19:08:54 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
ynh_script_progression --message="Configuring NGINX web server..." --weight=3
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2023-12-20 19:03:04 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
ynh_script_progression --message="Adding a configuration file..." --weight=1
2023-12-20 19:08:54 +01:00
# Configure redis
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
ynh_add_config --template="../conf/default.yml" --destination="$install_dir/.config/default.yml"
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:www-data "$install_dir"
chmod 400 "$install_dir/.config/default.yml"
chown $app:$app "$install_dir/.config/default.yml"
#=================================================
# BUILD APP
#=================================================
ynh_script_progression --message="Building app... This will take some time." --weight=15
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
pushd "$install_dir"
ynh_use_nodejs
corepack enable
corepack prepare --activate
2023-12-21 22:15:37 +01:00
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn
2023-12-20 19:08:54 +01:00
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH NODE_ENV=production yarn build
ynh_exec_warn_less ynh_exec_as $app env $ynh_node_load_PATH yarn run init
popd
2023-12-20 19:03:04 +01:00
#=================================================
2023-12-20 19:08:54 +01:00
# SETUP SYSTEMD
2023-12-20 19:03:04 +01:00
#=================================================
2023-12-20 19:08:54 +01:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
env_path="$PATH"
# Create a dedicated systemd config
ynh_add_systemd_config
2023-12-20 19:03:04 +01:00
2023-12-20 19:08:54 +01:00
#=================================================
# SETUP LOGROTATE
#=================================================
ynh_script_progression --message="Configuring log rotation..." --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
2023-12-20 19:03:04 +01:00
#=================================================
2023-12-20 19:08:54 +01:00
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
yunohost service add $app --description="A interplanetary blogging platform" --log="/var/log/$app/$app.log"
2023-12-20 19:03:04 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=1
# Start a systemd service
2023-12-20 19:08:54 +01:00
ynh_systemd_action --service_name=$app --action="start" --log_path=systemd --line_match="All workers started"
2023-12-20 19:03:04 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2023-12-20 19:08:54 +01:00
ynh_script_progression --message="Installation of $app completed"