(add): Some automated packaging.

This commit is contained in:
2026-01-22 23:30:41 -05:00
parent 0279ce7078
commit 2738ac6e89
10 changed files with 62 additions and 3 deletions

View File

@@ -0,0 +1,10 @@
read -p "Enter the key that you want to delete: " apikey
if [ -x "$(command -v docker)" ]; then
docker compose exec tam3-api /app/key.py delete $apikey
elif [ -x "$(command -v podman)" ]; then
podman compose exec tam3-api /app/key.py delete $apikey
else
echo "Neither Docker nor Podman are installed. Please install whichever you prefer, then try again."
exit 1
fi