Files
Trackeep/scripts/test-complete-system.sh
T
Tomas Dvorak a9395be39f chore: Add automated release workflow and version management
- Add GitHub Actions workflow for automated releases
- Add semantic versioning support
- Update docker-compose files with version variables
- Add release script for manual versioning
- Add comprehensive version workflow documentation

🚀 Ready for v1.2.5 release
2026-02-27 19:03:41 +01:00

61 lines
2.1 KiB
Bash
Executable File

#!/bin/bash
# Test the complete Docker-based update system
echo "🧪 Testing Complete Docker Update System"
echo "======================================="
echo ""
echo "1. ✅ Backend API Test:"
echo " Testing update check endpoint..."
response=$(curl -s http://localhost:8080/api/updates/check)
echo " Response: $(echo "$response" | jq -r '.updateAvailable // "false"')"
if echo "$response" | grep -q '"updateAvailable":true'; then
echo " ✅ Update available detected!"
echo " Current: $(echo "$response" | jq -r '.currentVersion // "unknown"')"
echo " Latest: $(echo "$response" | jq -r '.latestVersion // "unknown"')"
else
echo " ⚠️ No updates available"
fi
echo ""
echo "2. ✅ Frontend Integration:"
echo " UpdateChecker component is integrated in sidebar"
echo " Shows update status in left navigation"
echo " Auto-checks every 24 hours"
echo ""
echo "3. ✅ Docker Configuration:"
echo " docker-compose.yml - Local builds (for development)"
echo " docker-compose.prod.yml - Latest images (for production)"
echo " Images: ghcr.io/dvorinka/trackeep/*:latest"
echo ""
echo "4. ✅ No Shell Scripts Needed:"
echo " Update checking built into frontend"
echo " Update installation built into backend"
echo " User just needs to: docker compose up"
echo ""
echo "🎯 How It Works:"
echo "=================="
echo "1. User starts app with: docker compose up"
echo "2. Frontend auto-checks for updates (every 24h)"
echo "3. Update button appears in left nav if updates available"
echo "4. User clicks update → Backend pulls latest images"
echo "5. Services restart automatically with new images"
echo "6. No OAuth, no setup, no shell scripts required"
echo ""
echo "✨ Key Features:"
echo "- 🚫 No OAuth authentication required"
echo "- 🐳 Uses Docker pulls (latest images)"
echo "- 🔄 Auto-checks every 24 hours"
echo "- 📍 Shows update notification in left nav"
echo "- ⚡ One-click updates from UI"
echo "- 🛠️ Works with local docker-compose.yml"
echo "- 📦 Uses latest tags (not specific ones)"
echo ""
echo "🎉 System Ready!"