1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/tooljet_ynh.git synced 2024-10-01 13:34:55 +02:00
tooljet_ynh/scripts/install

130 lines
4.5 KiB
Text
Raw Normal View History

2022-02-10 01:09:31 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INSTALL DEPENDENCIES
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Installing dependencies..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-10 00:47:20 +01:00
ynh_install_nodejs --nodejs_version=$NODEJS_VERSION
2022-02-10 01:09:31 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Setting up source files..." --weight=1
2022-02-10 01:09:31 +01:00
# Download, check integrity, uncompress and patch the source from app.src
2023-08-12 19:35:24 +02:00
ynh_setup_source --dest_dir="$install_dir"
2022-02-10 01:09:31 +01:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
2022-02-10 01:09:31 +01:00
#=================================================
# NGINX CONFIGURATION
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2022-02-10 01:09:31 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
#=================================================
# SPECIFIC SETUP
#=================================================
2022-02-10 00:47:20 +01:00
# BUILD THE APPLICATION
2022-02-10 01:09:31 +01:00
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Building ToolJet..." --weight=10
2022-02-10 01:09:31 +01:00
2023-08-12 19:35:24 +02:00
pushd $install_dir
2022-02-10 00:47:20 +01:00
ynh_use_nodejs
2022-02-10 01:09:31 +01:00
2022-02-12 10:06:14 +01:00
# The version shipped by default with n does not work, there is a
2023-08-12 19:35:24 +02:00
# weird dependency issue about unsupported platform and fsevent.
2022-02-12 10:06:14 +01:00
# See https://github.com/ToolJet/ToolJet/pull/1752
2023-09-16 14:19:00 +02:00
$ynh_npm install npm@"$NPM_VERSION" --location=global
2022-02-12 09:58:41 +01:00
2022-02-12 10:06:14 +01:00
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm install -f
ynh_exec_warn_less ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run build
2022-02-10 00:47:20 +01:00
popd
2022-02-10 01:09:31 +01:00
2023-09-16 14:01:45 +02:00
# Cleanup after install
ynh_secure_remove --file="$install_dir/.cache"
ynh_secure_remove --file="$install_dir/.npm/_cacache"
ynh_secure_remove --file="$install_dir/node_modules"
ynh_secure_remove --file="$install_dir/frontend/node_modules"
2023-09-16 11:08:56 +02:00
chmod 750 "$install_dir"
chmod -R o-rwx "$install_dir"
chown -R $app:$app "$install_dir"
chown $app:www-data -R "$install_dir/frontend/build"
chown $app:www-data "$install_dir/frontend/build"
chown $app:www-data "$install_dir/frontend"
chown $app:www-data "$install_dir"
2022-02-10 01:09:31 +01:00
#=================================================
# ADD A CONFIGURATION
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Adding a configuration file..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-12 09:58:41 +01:00
# package_linter don't like `openssl` rand :(
2022-02-10 01:54:29 +01:00
# Use ynh_string_random and some magic stuff to get a 32 bytes hex-only string
lockbox_master_key=$(ynh_string_random --length=32 | xxd -p | head -n1 | cut -c 1-32)
2022-02-10 00:47:20 +01:00
ynh_app_setting_set --app="$app" --key=lockbox_master_key --value="$lockbox_master_key"
2022-02-10 01:54:29 +01:00
secret_key_base=$(ynh_string_random --length=64 | xxd -p | head -n1 | cut -c 1-64)
2022-02-10 00:47:20 +01:00
ynh_app_setting_set --app="$app" --key=secret_key_base --value="$secret_key_base"
2023-08-12 19:35:24 +02:00
ynh_add_config --template=".env.example" --destination="$install_dir/.env"
2022-02-10 00:47:20 +01:00
2023-08-12 19:35:24 +02:00
chmod 400 "$install_dir/.env"
chown $app:$app "$install_dir/.env"
2022-02-10 01:09:31 +01:00
2022-02-12 10:06:14 +01:00
#=================================================
# BUILD THE DATABASE
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Building ToolJet database..." --weight=1
2022-02-12 10:06:14 +01:00
2023-08-12 19:35:24 +02:00
pushd $install_dir
2022-02-12 10:06:14 +01:00
# Build the database once the configuration is set
ynh_exec_as $app $ynh_node_load_PATH $ynh_npm run db:migrate
popd
2022-02-10 01:09:31 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
2022-02-10 01:09:31 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config
#=================================================
# GENERIC FINALIZATION
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2022-02-10 01:09:31 +01:00
2022-02-10 00:47:20 +01:00
yunohost service add $app
2022-02-10 01:09:31 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Starting a systemd service..." --weight=1
2022-02-10 01:09:31 +01:00
# Start a systemd service
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"
#=================================================
# END OF SCRIPT
#=================================================
2022-02-27 20:19:24 +01:00
ynh_script_progression --message="Installation of $app completed" --last