This commit is contained in:
Bozhidar Slaveykov 2023-11-23 21:36:21 +02:00
parent 136e7ad5b5
commit 049f2e6f5c
2 changed files with 24 additions and 2 deletions

View file

@ -1,6 +1,6 @@
#!/bin/bash
HELPERS_DIR="$(dirname "$(pwd)")/shell/helpers/ubuntu"
HELPERS_DIR="/AlphaXPanel/shell/helpers/ubuntu"
. $HELPERS_DIR"/common.sh"
# Update the system
@ -37,7 +37,7 @@ for DEPENDENCY in "${DEPENDENCIES_FOR_REMOVE_LIST[@]}"; do
if command_is_installed $DEPENDENCY; then
echo "Dependency $DEPENDENCY is installed."
echo "Removing $DEPENDENCY..."
apt remove -y $DEPENDENCY
apt purge -y $DEPENDENCY
apt autoremove -y
fi
done

22
samples/sample-index.html Normal file
View file

@ -0,0 +1,22 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body>
<div class="flex flex-col bg-gray-50 justify-center h-screen text-center">
<div>
<h1 class="text-3xl font-bold">
Welcome to AlphaXPanel!
</h1>
</div>
<div>
<p class="text-xl">
The simplest way to manage your websites.
</p>
</div>
</div>
</body>
</html>