small fix, don't worry about it

This commit is contained in:
Tomas Dvorak
2026-04-10 12:02:36 +02:00
parent 08bd0c6e5c
commit 08cb5754f3
638 changed files with 57332 additions and 34706 deletions
+47
View File
@@ -0,0 +1,47 @@
#!/bin/bash
# Test the auto-deployment system with a simple template
echo "🧪 Testing Auto-Deployment System"
echo "================================"
echo ""
# Check if we're in the right directory
if [[ ! -f "scripts/auto-deploy.sh" ]]; then
echo "❌ Error: Please run this script from the project root directory"
exit 1
fi
echo "🔍 Checking dependencies..."
if command -v docker &> /dev/null; then
echo "✅ Docker is available"
else
echo "❌ Docker is not available - this test requires Docker"
exit 1
fi
echo ""
echo "🎯 Testing auto-deployment with Glance (simplest template)..."
echo ""
# Make scripts executable
chmod +x scripts/auto-deploy.sh
chmod +x scripts/quick-deploy.sh
echo "📋 Available deployment options:"
echo "1. Quick Deploy: ./scripts/quick-deploy.sh"
echo "2. Direct Deploy: ./scripts/auto-deploy.sh glance"
echo "3. List Templates: ./scripts/auto-deploy.sh --list"
echo "4. Deploy All: ./scripts/auto-deploy.sh --all"
echo ""
echo "🚀 Let's test the system by listing available templates:"
./scripts/auto-deploy.sh --list
echo ""
echo "✅ Auto-deployment system is ready!"
echo ""
echo "🎯 To use it:"
echo " ./scripts/quick-deploy.sh # Interactive menu"
echo " ./scripts/auto-deploy.sh glance # Direct deployment"
echo ""
echo "📖 Full guide: AUTO_DEPLOY_GUIDE.md"