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

67 lines
2.4 KiB
Text
Raw Normal View History

2023-12-11 17:56:26 +01:00
#!/bin/bash
source _common.sh
source /usr/share/yunohost/helpers
#=================================================
# INSTALL APP
#=================================================
ynh_script_progression --message="Installing app..." --weight=5
pushd $install_dir
python3 -m venv venv
2023-12-12 10:55:14 +01:00
. venv/bin/activate
2023-12-12 11:20:21 +01:00
pip3 install -U lucterios lucterios-standard lucterios-contacts lucterios-documents
pip3 install -U diacamma-asso diacamma-syndic diacamma-financial
pip3 install -U gunicorn psycopg2-binary psycopg2
2023-12-12 12:04:12 +01:00
lucterios_admin.py installed
2023-12-12 12:18:10 +01:00
export PYTHONPATH="$install_dir/venv/lib/python3.9/site-packages"
2023-12-12 12:09:45 +01:00
ls -l $install_dir/venv/lib/python*/site-packages/lucterios
ls -l $install_dir/venv/lib/python*/site-packages/diacamma
2023-12-12 12:26:19 +01:00
ls -l $install_dir/venv/lib/python*/site-packages/diacamma/member
2023-12-12 12:04:12 +01:00
ynh_script_progression --message=" >> PYTHONPATH=${PYTHONPATH}"
2023-12-12 11:38:41 +01:00
lucterios_admin.py add -n ${app} -p "${APPLITYPE}" -m "${MODULES}" -d "${DATABASE}" -e '{"LANGUAGES":"'${language}'"}'
refresh_collect
2023-12-11 17:56:26 +01:00
popd
chmod 400 "$install_dir/"
chown ${app}:${app} "$install_dir/"
#=================================================
# SYSTEM CONFIGURATION
#=================================================
ynh_script_progression --message="Adding system configurations related to ${app}..."
# Create a dedicated NGINX config using the conf/nginx.conf template
ynh_add_nginx_config
### `ynh_systemd_config` is used to configure a systemd script for an app, using the conf/systemd.service template
# Create a dedicated systemd config
ynh_add_systemd_config
### `yunohost service add` integrates a service in YunoHost. It then gets
### displayed in the admin interface and through the others `yunohost service` commands.
yunohost service add ${app} --log="/var/log/${app}/${app}.log"
# Use logrotate to manage application logfile(s)
ynh_use_logrotate
# Create a dedicated Fail2Ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex=""
#=================================================
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Starting app's systemd service..."
# Start a systemd service
ynh_systemd_action --service_name=${app} --action="start" --log_path="/var/log/${app}/${app}.log"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of ${app} completed" --last