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

129 lines
4.7 KiB
Text
Raw Normal View History

2020-11-19 21:41:03 +01:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# RETRIEVE ARGUMENTS FROM THE MANIFEST
#=================================================
allow_anonymous=false
2023-01-21 12:35:07 +01:00
allow_anonymous_edits=false
allow_email_registration=false
2023-01-21 12:24:42 +01:00
allow_free_url=false
2023-01-21 12:30:12 +01:00
require_free_url_authentication=false
2020-11-19 21:41:03 +01:00
#=================================================
# STORE SETTINGS FROM MANIFEST
#=================================================
2021-03-12 22:47:43 +01:00
ynh_app_setting_set --app=$app --key=domain --value=$domain
2021-03-24 12:54:05 +01:00
ynh_app_setting_set --app=$app --key=path --value=$path_url
2020-11-19 21:41:03 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=20
# Install Nodejs
ynh_exec_warn_less ynh_install_nodejs --nodejs_version=$nodejs_version
2024-05-28 23:26:18 +02:00
ynh_use_nodejs
2020-11-19 21:41:03 +01:00
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
#=================================================
ynh_script_progression --message="Setting up source files..." --weight=2
# Download, check integrity, uncompress and patch the source from app.src
2024-05-28 23:26:18 +02:00
#ynh_setup_source --dest_dir=$install_dir
mkdir -p $install_dir/backend
mkdir -p $install_dir/frontend
git clone --depth 1 https://github.com/hedgedoc/hedgedoc -b develop $install_dir/backend
git clone --depth 1 https://github.com/hedgedoc/react-client $install_dir/frontend
2020-11-19 21:41:03 +01:00
#=================================================
# SYSTEM CONFIGURATION
2020-11-19 21:41:03 +01:00
#=================================================
2023-05-18 12:26:09 +02:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2020-11-19 21:41:03 +01:00
ynh_add_nginx_config
ynh_add_systemd_config
yunohost service add $app --description="Collaborative Markdown editor" --log="/var/log/$app/$app.log"
2020-11-19 21:41:03 +01:00
#=================================================
# SPECIFIC SETUP
#==============================================
2020-11-19 21:56:06 +01:00
# INSTALL HEDGEDOC
2020-11-19 21:41:03 +01:00
#==============================================
2024-05-28 23:37:06 +02:00
ynh_script_progression --message="Building $app... (this will take some time and resources!)" --weight=20
2024-05-28 23:26:18 +02:00
pushd "$install_dir/backend"
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install
popd
2024-05-28 23:26:18 +02:00
pushd "$install_dir/frontend"
ynh_exec_warn_less sudo -u $app env $ynh_node_load_PATH yarn install
# TODO: Fails out of memory in my tests
# Production build
# Not sure if PORT is necessary here
# PORT=$port_frontend REACT_APP_BACKEND_BASE_URL=http://localhost:$port_backend/ yarn build:production
2021-12-03 00:04:27 +01:00
popd
2020-11-19 21:41:03 +01:00
#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Configuring a systemd service..." --weight=1
ynh_add_systemd_config --service="${app}_backend" --template="../conf/backend.service"
ynh_add_systemd_config --service="${app}_frontend" --template="../conf/frontend.service"
2020-11-19 21:41:03 +01:00
#=================================================
# MODIFY A CONFIG FILE
#=================================================
2020-11-19 21:56:06 +01:00
ynh_script_progression --message="Modifying a config file..." --weight=1
2020-11-19 21:41:03 +01:00
#path=${path_url:1}
2024-05-28 23:26:18 +02:00
ynh_add_config --template="env_backend" --destination="$install_dir/backend/.env"
2021-03-15 10:22:19 +01:00
2020-11-19 21:41:03 +01:00
#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================
2020-11-19 21:56:06 +01:00
ynh_script_progression --message="Securing files and directories..." --weight=1
2020-11-19 21:41:03 +01:00
# Set permissions to app files
2024-05-28 23:26:18 +02:00
chown -R $app:$app $install_dir
chmod o-rwx $install_dir
2020-11-19 21:41:03 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
2020-11-19 21:56:06 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=2
2020-11-19 21:41:03 +01:00
yunohost service add "${app}_backend" --description="Collaborative Markdown editor's backend" --log="/var/log/$app/$app.log"
yunohost service add "${app}_frontend" --description="Collaborative Markdown editor's frontend" --log="/var/log/$app/$app.log"
2020-11-19 21:41:03 +01:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting a systemd service..." --weight=2
# Start a systemd service
ynh_systemd_action --service_name="${app}_backend" --action=start --log_path=systemd
ynh_systemd_action --service_name="${app}_frontend" --action=start --log_path=systemd
2020-11-19 21:41:03 +01:00
#=================================================
# END OF SCRIPT
#=================================================
2022-02-01 14:11:16 +01:00
ynh_script_progression --message="Installation of $app completed" --last