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

112 lines
3.9 KiB
Text
Raw Normal View History

2022-04-29 12:18:34 +02:00
#!/bin/bash
#=================================================
# GENERIC START
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2023-03-02 17:41:26 +01:00
admin_mail=$(ynh_user_get_info --username=$admin --key=username)
2023-03-02 20:47:14 +01:00
2023-03-05 20:02:47 +01:00
2023-02-27 22:48:27 +01:00
#=================================================
# INSTALL DEPENDENCIES
#=================================================
ynh_script_progression --message="Installing dependencies..." --weight=23
ynh_exec_warn_less python3 -m pip install pipenv
2023-02-19 21:25:44 +01:00
2023-03-05 21:24:24 +01:00
#=================================================
2023-03-05 22:35:00 +01:00
# DOWNLOAD, CHECK AND UNPACK SOURCE
2023-03-05 21:24:24 +01:00
#=================================================
2023-03-05 22:35:00 +01:00
ynh_script_progression --message="Setting up source files..." --weight=64
2023-03-05 21:24:24 +01:00
chown -R $app:www-data "$install_dir"
2023-03-05 22:35:00 +01:00
pushd $install_dir
mkdir -p .venv
PIPENV_VENV_IN_PROJECT="enabled" PIPENV_SKIP_LOCK=true ynh_exec_warn_less python3 -m pipenv install fittrackee==$fittrackee_version python-dotenv
popd
2023-03-05 22:03:05 +01:00
#=================================================
# LOGROTATE
2023-03-05 22:35:00 +01:00
#=================================================
2023-03-05 22:03:05 +01:00
ynh_script_progression --message="Configuring logrotate to manage application logfiles" --weight=1
# Use logrotate to manage application logfile(s)
ynh_use_logrotate --specific_user=$app
chown -R $app:www-data /var/log/$app/
2023-03-05 21:24:24 +01:00
2022-04-29 12:18:34 +02:00
#=================================================
2023-03-05 22:35:00 +01:00
# CONFIGURE THE INSTALL SCRIPT
2022-04-29 12:18:34 +02:00
#=================================================
2023-03-05 22:35:00 +01:00
ynh_script_progression --message="Installing service script..." --weight=1
2023-03-05 21:24:24 +01:00
2023-03-05 22:35:00 +01:00
key=$(ynh_string_random --length=45 | base64)
ynh_app_setting_set --app=$app --key=key --value=$key
2022-04-29 12:18:34 +02:00
2023-02-27 22:48:27 +01:00
2023-03-05 22:35:00 +01:00
ynh_add_config --template="../conf/.env.production" --destination="$install_dir/.env"
chmod 600 $install_dir/.env
2023-03-05 21:24:24 +01:00
2023-03-05 22:35:00 +01:00
chown -R $app:www-data "$install_dir"
2023-02-27 22:48:27 +01:00
2023-03-05 22:35:00 +01:00
set -a; source "$install_dir/.env"; set +a
2023-03-05 21:24:24 +01:00
#=================================================
# INITIALIZE DATABASE
#=================================================
2023-03-05 22:35:00 +01:00
ynh_script_progression --message="Initializing database..." --weight=1
2023-03-05 21:24:24 +01:00
2023-03-05 22:35:00 +01:00
ynh_exec_warn_less $install_dir/.venv/bin/ftcli db upgrade
# ynh_exec_warn_less $install_dir/.venv/bin/fittrackee
2023-03-05 21:24:24 +01:00
2023-03-05 20:26:44 +01:00
2023-02-28 22:27:34 +01:00
#=================================================
2023-03-05 20:26:44 +01:00
# NGINX CONFIGURATION
2023-03-05 22:35:00 +01:00
#=================================================
2023-03-05 20:26:44 +01:00
ynh_script_progression --message="Configuring NGINX web server..." --weight=1
2023-02-28 22:27:34 +01:00
2023-03-05 20:26:44 +01:00
# Create a dedicated NGINX config
ynh_add_nginx_config
2022-04-29 12:18:34 +02:00
2023-03-05 22:35:00 +01:00
2023-03-05 20:26:44 +01:00
#=================================================
# SETUP SYSTEMD
2023-03-05 22:35:00 +01:00
#=================================================
2023-03-05 20:26:44 +01:00
ynh_script_progression --message="Configuring a systemd service..." --weight=1
# Create a dedicated systemd config
ynh_add_systemd_config --service="${app}" --template="fittrackee.service"
ynh_add_systemd_config --service="${app}_workers" --template="fittrackee_workers.service"
2023-03-03 16:10:09 +01:00
2023-03-05 22:35:00 +01:00
#=================================================
# GENERIC FINALIZATION
2023-03-05 20:26:44 +01:00
#=================================================
# INTEGRATE SERVICE IN YUNOHOST
2023-03-05 22:35:00 +01:00
#=================================================
2023-03-05 20:26:44 +01:00
ynh_script_progression --message="Integrating service in YunoHost..." --weight=1
2023-03-03 17:42:30 +01:00
2023-03-05 20:26:44 +01:00
yunohost service add "${app}" --description="Fittrackee main service" --log="/var/log/$app/$app.log"
yunohost service add "${app}_workers" --description="Fittrackee task queue service" --log="var/log/$app/$app.log"
2023-03-03 17:42:30 +01:00
2022-04-29 12:18:34 +02:00
#=================================================
# START SYSTEMD SERVICE
#=================================================
2023-03-05 22:35:00 +01:00
ynh_script_progression --message="Starting systemd services..." --weight=15
2022-04-29 12:18:34 +02:00
# Start a systemd service
2023-02-28 20:57:55 +01:00
ynh_systemd_action --service_name="${app}" --action="start" --log_path="/var/log/$app/$app.log" --line_match="Booting worker with pid"
2023-03-05 22:35:00 +01:00
ynh_systemd_action --service_name="${app}_workers" --action="start" --log_path="/var/log/$app/$app.log" --line_match="Started"
2023-02-27 22:48:27 +01:00
2022-04-29 12:18:34 +02:00
#=================================================
# END OF SCRIPT
#=================================================
2023-03-05 22:35:00 +01:00
ynh_script_progression --message="Installation of $app completed" --last