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 23:12:21 +01:00
|
|
|
#=================================================
|
|
|
|
# LOGROTATE
|
|
|
|
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
|
|
|
|
touch /var/log/$app/$app.log
|
|
|
|
chown -R $app:www-data /var/log/$app/
|
|
|
|
|
2023-03-05 23:31:02 +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 22:59:39 +01:00
|
|
|
|
2023-03-05 23:12:21 +01:00
|
|
|
#=================================================
|
|
|
|
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
|
|
|
#=================================================
|
2023-03-05 21:24:24 +01:00
|
|
|
#=================================================
|
2023-03-05 22:59:39 +01:00
|
|
|
# CONFIGURE THE INSTALL SCRIPT
|
2023-03-05 21:24:24 +01:00
|
|
|
#=================================================
|
|
|
|
|
2023-03-05 22:59:39 +01:00
|
|
|
# key for the .env __KEY__
|
|
|
|
key=$(ynh_string_random --length=45 | base64)
|
|
|
|
ynh_app_setting_set --app=$app --key=key --value=$key
|
2023-03-05 21:24:24 +01:00
|
|
|
|
2023-03-05 23:12:21 +01:00
|
|
|
ynh_script_progression --message="Setting up source files..." --weight=64
|
2023-03-05 22:59:39 +01:00
|
|
|
|
2023-03-05 23:33:24 +01:00
|
|
|
ynh_add_config --template="../conf/.env.production" --destination="$install_dir/.env"
|
|
|
|
chmod 600 $install_dir/.env
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-03-05 22:59:39 +01:00
|
|
|
chown -R $app:www-data "$install_dir"
|
2023-03-05 22:35:00 +01:00
|
|
|
|
2023-03-05 23:33:24 +01:00
|
|
|
|
|
|
|
set -a; source "$install_dir/.env"; set +a
|
|
|
|
|
2023-03-05 22:59:39 +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
|
2023-03-05 23:12:21 +01:00
|
|
|
pipenv shell
|
|
|
|
ftcli db upgrade
|
2023-03-05 22:59:39 +01:00
|
|
|
popd
|
2023-02-27 22:48:27 +01:00
|
|
|
|
2023-03-05 21:24:24 +01:00
|
|
|
|
2023-03-05 23:12:21 +01:00
|
|
|
|
|
|
|
|
2023-03-05 21:24:24 +01:00
|
|
|
#=================================================
|
|
|
|
# INITIALIZE DATABASE
|
|
|
|
#=================================================
|
2023-03-05 23:12:21 +01:00
|
|
|
# ynh_script_progression --message="Initializing database..." --weight=1
|
2023-03-05 22:35:00 +01:00
|
|
|
|
2023-03-05 22:59:39 +01:00
|
|
|
# ynh_exec_warn_less $install_dir/.venv/bin/ftcli db upgrade
|
2023-03-05 21:24:24 +01:00
|
|
|
|
|
|
|
|
2023-03-05 22:59:39 +01:00
|
|
|
#=================================================
|
|
|
|
# System Configuration
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="Adding system configurations related to $app ..." --weight=1
|
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
|
|
|
|
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 20:26:44 +01:00
|
|
|
#=================================================
|
|
|
|
# SETUP SYSTEMD
|
|
|
|
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 20:26:44 +01:00
|
|
|
#=================================================
|
|
|
|
# INTEGRATE SERVICE IN YUNOHOST
|
|
|
|
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
|
|
|
|
2023-03-05 22:59:39 +01:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# GENERIC FINALIZATION
|
|
|
|
#=================================================
|
|
|
|
|
2022-04-29 12:18:34 +02:00
|
|
|
#=================================================
|
|
|
|
# START SYSTEMD SERVICE
|
|
|
|
#=================================================
|
2023-03-05 22:59:39 +01:00
|
|
|
ynh_script_progression --message="Starting the 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 23:12:21 +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 23:31:02 +01:00
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|