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

120 lines
4.1 KiB
Text
Raw Normal View History

2022-07-11 20:34:24 +02:00
#!/bin/bash
#=================================================
# IMPORT GENERIC HELPERS
#=================================================
source _common.sh
source /usr/share/yunohost/helpers
2024-01-19 14:49:36 +01:00
mkdir -p "$install_dir/public/media" "$install_dir/public/static"
2024-01-18 21:02:26 +01:00
mkdir -p "$install_dir"
2022-07-11 20:34:24 +02:00
mkdir -p "$log_path"
2024-01-18 21:02:26 +01:00
touch "${/var/log/$app/$app.log}"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
redis_db=$(ynh_redis_get_free_db)
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# 'debug_enabled' -> '__DEBUG_ENABLED__' -> settings.DEBUG
debug_enabled="0"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# 'log_level' -> '__LOG_LEVEL__' -> settings.LOG_LEVEL
log_level="WARNING"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# 'admin_email' -> '__ADMIN_EMAIL__' add in settings.ADMINS
admin_email="${admin}@${domain}"
2024-01-18 21:02:26 +01:00
# 'default_from_email' -> '__DEFAULT_FROM_EMAIL__' -> settings.DEFAULT_FROM_EMAIL
default_from_email="${app}@${domain}"
2022-07-11 20:34:24 +02:00
ynh_app_setting_set --app="$app" --key=debug_enabled --value="$debug_enabled"
ynh_app_setting_set --app="$app" --key=log_level --value="$log_level"
2024-01-18 21:02:26 +01:00
#REMOVEME? ynh_app_setting_set --app="$app" --key=admin_email --value="$admin_email"
ynh_app_setting_set --app="$app" --key=default_from_email --value="$default_from_email"
2022-07-11 20:34:24 +02:00
#=================================================
2024-01-18 21:02:26 +01:00
# INSTALLATION
2022-07-11 20:34:24 +02:00
#=================================================
2024-01-18 21:02:26 +01:00
ynh_script_progression --message="Installing project via pip..." --weight=45
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
_install_fmd_venv
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
mkdir -p "$install_dir/public/media" "$install_dir/public/static"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
chmod o-rwx "$install_dir"
chown -R "$app:www-data" "$install_dir"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
mkdir -p "$log_path"
touch "$log_file"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
chmod o-rwx "$log_path"
chown -R "$app:$app" "$log_path"
2022-07-11 20:34:24 +02:00
#=================================================
# copy config files
# ================================================
ynh_script_progression --message="Create $app configuration files..."
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
ynh_add_config --template="gunicorn.conf.py" --destination="$install_dir/gunicorn.conf.py"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
ynh_add_config --template="manage.py" --destination="$install_dir/manage.py"
chmod +x "$install_dir/manage.py"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
ynh_add_config --template="settings.py" --destination="$install_dir/settings.py"
ynh_add_config --template="setup_user.py" --destination="$install_dir/setup_user.py"
ynh_add_config --template="urls.py" --destination="$install_dir/urls.py"
ynh_add_config --template="wsgi.py" --destination="$install_dir/wsgi.py"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
touch "$install_dir/local_settings.py"
2022-07-11 20:34:24 +02:00
#=================================================
# MIGRATE / COLLECTSTATIC / CREATEADMIN
#=================================================
ynh_script_progression --message="migrate/collectstatic/createadmin..." --weight=10
2024-01-18 21:02:26 +01:00
pushd "$install_dir"
# Just for debugging:
ynh_exec_as "$app" "$venvpython" ./manage.py diffsettings
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
ynh_exec_as "$app" "$venvpython" ./manage.py migrate --no-input
ynh_exec_as "$app" "$venvpython" ./manage.py collectstatic --no-input
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# Create/update Django superuser (set unusable password, because auth done via SSOwat):
ynh_exec_as "$app" "$venvpython" ./manage.py create_superuser --username="$admin" --email="$(ynh_user_get_info "$admin" mail)"
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# Check the configuration
# This may fail in some cases with errors, etc., but the app works and the user can fix issues later.
ynh_exec_as "$app" "$venvpython" ./manage.py check --deploy || true
popd
2022-07-11 20:34:24 +02:00
#=================================================
2024-01-18 21:02:26 +01:00
# SYSTEM CONFIGURATION
2022-07-11 20:34:24 +02:00
#=================================================
2024-01-18 21:02:26 +01:00
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# Create a dedicated nginx config
ynh_add_nginx_config
2022-07-11 20:34:24 +02:00
2024-01-18 21:02:26 +01:00
# Create a dedicated systemd config
ynh_add_systemd_config --service="$app" --template="systemd.service"
2024-01-18 21:02:26 +01:00
yunohost service add "$app" --log="/var/log/$app/$app.log"
2024-01-18 21:02:26 +01:00
# Use logrotate to manage app-specific logfile(s)
ynh_use_logrotate
2022-07-11 20:34:24 +02:00
#=================================================
# Start the app server via systemd
2022-07-11 20:34:24 +02:00
#=================================================
ynh_script_progression --message="Starting systemd service '$app'..." --weight=5
2022-07-11 20:34:24 +02:00
ynh_systemd_action --service_name="$app" --action="start"
#=================================================
# END OF SCRIPT
#=================================================
ynh_script_progression --message="Installation of $app completed" --last