2023-05-26 19:09:08 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# IMPORT GENERIC HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
source _common.sh
|
|
|
|
source /usr/share/yunohost/helpers
|
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
# INITIALIZE AND STORE SETTINGS
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
|
|
|
|
|
|
|
redis_db=$(ynh_redis_get_free_db)
|
|
|
|
ynh_app_setting_set --app="$app" --key=redis_db --value="$redis_db"
|
|
|
|
|
|
|
|
#-------------------------------------------------
|
|
|
|
# config_panel.toml settings:
|
|
|
|
|
|
|
|
ynh_app_setting_set --app="$app" --key=debug_enabled --value="$debug_enabled"
|
|
|
|
ynh_app_setting_set --app="$app" --key=log_level --value="$log_level"
|
|
|
|
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"
|
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
# INSTALLATION
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_script_progression --message="Installing project via pip..." --weight=45
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
_install_scovie_venv
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 14:19:07 +01:00
|
|
|
mkdir -p "$install_dir/public/media" "$install_dir/public/static"
|
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
chmod o-rwx "$install_dir"
|
|
|
|
chown -R "$app:www-data" "$install_dir"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
mkdir -p "$log_path"
|
|
|
|
touch "$log_file"
|
2024-01-18 14:19:07 +01:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
chmod o-rwx "$log_path"
|
|
|
|
chown -R "$app:$app" "$log_path"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
# COPY CONFIG FILES
|
2023-05-26 19:09:08 +02:00
|
|
|
# ================================================
|
|
|
|
ynh_script_progression --message="Create $app configuration files..."
|
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_add_config --template="gunicorn.conf.py" --destination="$install_dir/gunicorn.conf.py"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_add_config --template="manage.py" --destination="$install_dir/manage.py"
|
|
|
|
chmod +x "$install_dir/manage.py"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +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"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
touch "$install_dir/local_settings.py"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# MIGRATE / COLLECTSTATIC / CREATEADMIN
|
|
|
|
#=================================================
|
|
|
|
ynh_script_progression --message="migrate/collectstatic/createadmin..." --weight=10
|
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
pushd "$install_dir"
|
|
|
|
# Just for debugging:
|
|
|
|
ynh_exec_as "$app" ./manage.py diffsettings
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_exec_as "$app" ./manage.py migrate --no-input
|
|
|
|
ynh_exec_as "$app" ./manage.py collectstatic --no-input
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
# Create/update Django superuser (set unusable password, because auth done via SSOwat):
|
|
|
|
ynh_exec_as "$app" ./manage.py create_superuser --username="$admin" --email="$(ynh_user_get_info "$admin" mail)"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +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" ./manage.py check --deploy || true
|
|
|
|
popd
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
# SYSTEM CONFIGURATION
|
2023-05-26 19:09:08 +02:00
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_script_progression --message="Adding system configurations related to $app..." --weight=1
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
# Create a dedicated nginx config
|
|
|
|
ynh_add_nginx_config
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
# Create a dedicated NGINX config using the conf/nginx.conf template
|
2023-05-26 19:09:08 +02:00
|
|
|
ynh_add_systemd_config --service="$app" --template="systemd.service"
|
2024-01-18 13:19:08 +01:00
|
|
|
yunohost service add "$app" --description="Digital signage system for high schools" --log="$log_file"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
2024-01-18 13:19:08 +01:00
|
|
|
# Use logrotate to manage app-specific logfile(s)
|
|
|
|
ynh_use_logrotate "$log_file"
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# Start the app server via systemd
|
|
|
|
#=================================================
|
2024-01-18 13:19:08 +01:00
|
|
|
ynh_script_progression --message="Starting systemd service $app..." --weight=5
|
2023-05-26 19:09:08 +02:00
|
|
|
|
|
|
|
ynh_systemd_action --service_name="$app" --action="start"
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# END OF SCRIPT
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
ynh_script_progression --message="Installation of $app completed" --last
|