diff --git a/.gitignore b/.gitignore
deleted file mode 100644
index 02eeadd..0000000
--- a/.gitignore
+++ /dev/null
@@ -1,11 +0,0 @@
-# Ignore downloaded binaries and verification files
-dist/
-
-# Ignore build artifacts
-*.deb
-build/
-tmp/
-
-# Ignore common system files
-.DS_Store
-*.swp
diff --git a/amd64/DEBIAN/control b/amd64/DEBIAN/control
deleted file mode 100644
index b291007..0000000
--- a/amd64/DEBIAN/control
+++ /dev/null
@@ -1,7 +0,0 @@
-Package: gitea
-Version: 1.23.4-1
-Architecture: amd64
-Maintainer: Micha Espey <tracer@24unix.net>
-Depends: adduser, ca-certificates, git, openssh-server, gpg, jq
-Description: Gitea - Git with a cup of tea
- A painless self-hosted Git service.
diff --git a/amd64/DEBIAN/postinst b/amd64/DEBIAN/postinst
deleted file mode 100755
index ce2d509..0000000
--- a/amd64/DEBIAN/postinst
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-set -e
-
-# Ensure systemd is aware of the new service file
-systemctl daemon-reload
-
-# Enable and start Gitea service
-systemctl enable gitea
-systemctl restart gitea || true
-
-exit 0
diff --git a/amd64/DEBIAN/prerm b/amd64/DEBIAN/prerm
deleted file mode 100755
index b13377a..0000000
--- a/amd64/DEBIAN/prerm
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-set -e
-
-# Stop the Gitea service before updating/removal
-systemctl stop gitea || true
-
-exit 0
diff --git a/amd64/etc/systemd/system/gitea.service b/amd64/etc/systemd/system/gitea.service
deleted file mode 100644
index 65796d7..0000000
--- a/amd64/etc/systemd/system/gitea.service
+++ /dev/null
@@ -1,19 +0,0 @@
-[Unit]
-Description=Gitea (Git with a cup of tea)
-After=syslog.target
-After=network.target
-Requires=mariadb.service
-
-[Service]
-RestartSec=2s
-Type=simple
-User=gitea
-Group=gitea
-WorkingDirectory=/opt/gitea/
-ExecStart=/opt/gitea/bin/gitea web --config /etc/gitea/app.ini
-Restart=always
-Environment="GITEA_WORK_DIR=/opt/gitea/gitea"
-Environment="GITEA_CUSTOM=/opt/gitea/custom"
-
-[Install]
-WantedBy=multi-user.target
diff --git a/amd64/opt/gitea/bin/gitea b/amd64/opt/gitea/bin/gitea
deleted file mode 100755
index f9a2026..0000000
Binary files a/amd64/opt/gitea/bin/gitea and /dev/null differ
diff --git a/arm64/DEBIAN/control b/arm64/DEBIAN/control
deleted file mode 100644
index 65e7837..0000000
--- a/arm64/DEBIAN/control
+++ /dev/null
@@ -1,7 +0,0 @@
-Package: gitea
-Version: 1.23.4-1
-Architecture: arm64
-Maintainer: Micha Espey <tracer@24unix.net>
-Depends: adduser, ca-certificates, git, openssh-server, gpg, jq
-Description: Gitea - Git with a cup of tea
- A painless self-hosted Git service.
diff --git a/arm64/DEBIAN/postinst b/arm64/DEBIAN/postinst
deleted file mode 100755
index ce2d509..0000000
--- a/arm64/DEBIAN/postinst
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-set -e
-
-# Ensure systemd is aware of the new service file
-systemctl daemon-reload
-
-# Enable and start Gitea service
-systemctl enable gitea
-systemctl restart gitea || true
-
-exit 0
diff --git a/arm64/DEBIAN/prerm b/arm64/DEBIAN/prerm
deleted file mode 100755
index b13377a..0000000
--- a/arm64/DEBIAN/prerm
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/bin/sh
-set -e
-
-# Stop the Gitea service before updating/removal
-systemctl stop gitea || true
-
-exit 0
diff --git a/arm64/etc/systemd/system/gitea.service b/arm64/etc/systemd/system/gitea.service
deleted file mode 100644
index 65796d7..0000000
--- a/arm64/etc/systemd/system/gitea.service
+++ /dev/null
@@ -1,19 +0,0 @@
-[Unit]
-Description=Gitea (Git with a cup of tea)
-After=syslog.target
-After=network.target
-Requires=mariadb.service
-
-[Service]
-RestartSec=2s
-Type=simple
-User=gitea
-Group=gitea
-WorkingDirectory=/opt/gitea/
-ExecStart=/opt/gitea/bin/gitea web --config /etc/gitea/app.ini
-Restart=always
-Environment="GITEA_WORK_DIR=/opt/gitea/gitea"
-Environment="GITEA_CUSTOM=/opt/gitea/custom"
-
-[Install]
-WantedBy=multi-user.target
diff --git a/arm64/opt/gitea/bin/gitea b/arm64/opt/gitea/bin/gitea
deleted file mode 100755
index 95e0584..0000000
Binary files a/arm64/opt/gitea/bin/gitea and /dev/null differ
diff --git a/build.sh b/build.sh
deleted file mode 100755
index e7075a7..0000000
--- a/build.sh
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/bin/bash
-set -e  # Exit on error
-
-# Set Variables
-VERSION=$(curl -s https://dl.gitea.com/gitea/version.json | jq -r '.latest.version')
-ARCHS=("amd64" "arm64")
-GITEA_BASE_URL="https://dl.gitea.com/gitea/${VERSION}"
-FILES=("xz" "xz.asc" "xz.sha256" "xz.sha256.asc")
-
-# Download Gitea Binaries and Signatures
-for ARCH in "${ARCHS[@]}"; do
-	echo "Downloading Gitea ${VERSION} for ${ARCH}..."
-	for FILE in "${FILES[@]}"; do
-		FILE_NAME="gitea-${VERSION}-linux-${ARCH}.${FILE}"
-		FILE_URL="${GITEA_BASE_URL}/${FILE_NAME}"
-		TARGET_FILE="dist/${ARCH}/${FILE_NAME}"
-	        if [[ -f "$TARGET_FILE" ]]; then
-        		echo "✅ File already exists: $TARGET_FILE (Skipping)"
-        	else
-            		echo "⬇️  Downloading: $FILE_URL"
-            		wget -q "$FILE_URL" -O "$TARGET_FILE"
-        	fi
-	done
-done
-
-# Verify GPG Signatures
-for ARCH in "${ARCHS[@]}"; do
-	echo "Verifying GPG signature for ${ARCH}..."
-	gpg --verify "dist/${ARCH}/gitea-${VERSION}-linux-${ARCH}.xz.asc" "dist/${ARCH}/gitea-${VERSION}-linux-${ARCH}.xz"
-	gpg --verify "dist/${ARCH}/gitea-${VERSION}-linux-${ARCH}.xz.sha256.asc" "dist/${ARCH}/gitea-${VERSION}-linux-${ARCH}.xz.sha256"
-done
-
-
-#  Verify Checksums
-for ARCH in "${ARCHS[@]}"; do
-	echo "Verifying SHA256 checksum for ${ARCH}..."
-	(cd "dist/${ARCH}" && sha256sum -c gitea-${VERSION}-linux-${ARCH}.xz.sha256)
-done
-
-# expand the Gitea binray to the target
-for ARCH in "${ARCHS[@]}"; do
-	xz -dc "dist/${ARCH}/gitea-${VERSION}-linux-${ARCH}.xz" > "${ARCH}/opt/gitea/bin/gitea" || { echo "❌ Extraction failed for ${ARCH}"; exit 1; }
-
-	# Verify the extracted file isn't empty
-	if [[ ! -s "${ARCH}/opt/gitea/bin/gitea" ]]; then
-		echo "❌ Extracted file is empty for ${ARCH}. Something went wrong!"
-		exit 1
-	fi
-	chmod +x "${ARCH}/opt/gitea/bin/gitea"
-done
-	
-# Build Debian Packages
-for ARCH in "${ARCHS[@]}"; do
-    echo "Building package for ${ARCH}..."
-    dpkg-deb --build "${ARCH}" "gitea_${VERSION}_${ARCH}.deb"
-done
-
-echo "All packages built successfully:"
-ls -lh gitea_${VERSION}_*.deb
-