A free, open, self-hosted app platform (GNU AGPLv3): one-click app deploys, Traefik reverse proxy with automatic SSL, rootless Docker support, gluetun VPN routing, and a web dashboard to manage it all. Free & open forever to self-host; optional paid hosted services fund it. See PROMISE.md. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> Signed-off-by: librelad <librelad@digitalangels.vip>
37 lines
909 B
Bash
Executable File
37 lines
909 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Used for the full LibrePortal application
|
|
files_libreportal_app=(
|
|
"${app_scripts[@]}"
|
|
"${backup_scripts[@]}"
|
|
"${checks_scripts[@]}"
|
|
"${cli_scripts[@]}"
|
|
"${command_scripts[@]}"
|
|
"${config_scripts[@]}"
|
|
"${crontab_scripts[@]}"
|
|
"${database_scripts[@]}"
|
|
"${docker_scripts[@]}"
|
|
"${function_scripts[@]}"
|
|
"${gluetun_scripts[@]}"
|
|
"${headscale_scripts[@]}"
|
|
"${install_scripts[@]}"
|
|
"${logs_scripts[@]}"
|
|
"${menu_scripts[@]}"
|
|
"${migrate_scripts[@]}"
|
|
"${network_scripts[@]}"
|
|
"${os_scripts[@]}"
|
|
"${restore_scripts[@]}"
|
|
"${setup_scripts[@]}"
|
|
"${source_scripts[@]}"
|
|
"${ssh_scripts[@]}"
|
|
"${ssl_scripts[@]}"
|
|
"${start_scripts[@]}"
|
|
"${swapfile_scripts[@]}"
|
|
"${ufw_scripts[@]}"
|
|
"${ufwd_scripts[@]}"
|
|
"${update_scripts[@]}"
|
|
"${user_scripts[@]}"
|
|
"${webui_scripts[@]}"
|
|
"${wireguard_scripts[@]}"
|
|
)
|