Major WHOOSH system refactoring and feature enhancements

- Migrated from HIVE branding to WHOOSH across all components
- Enhanced backend API with new services: AI models, BZZZ integration, templates, members
- Added comprehensive testing suite with security, performance, and integration tests
- Improved frontend with new components for project setup, AI models, and team management
- Updated MCP server implementation with WHOOSH-specific tools and resources
- Enhanced deployment configurations with production-ready Docker setups
- Added comprehensive documentation and setup guides
- Implemented age encryption service and UCXL integration

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
anthonyrawlins
2025-08-27 08:34:48 +10:00
parent 0e9844ef13
commit 268214d971
399 changed files with 57390 additions and 2045 deletions

View File

@@ -1,16 +1,16 @@
#!/bin/bash
# Deploy Hive to Docker Swarm
# This script deploys the Hive distributed AI orchestration platform to the Docker Swarm
# Deploy WHOOSH to Docker Swarm
# This script deploys the WHOOSH distributed AI orchestration platform to the Docker Swarm
set -e
# Configuration
STACK_NAME="hive"
STACK_NAME="whoosh"
COMPOSE_FILE="docker-compose.swarm.yml"
DOMAIN="hive.home.deepblack.cloud"
DOMAIN="whoosh.home.deepblack.cloud"
echo "🐝 Deploying Hive to Docker Swarm"
echo "🐝 Deploying WHOOSH to Docker Swarm"
echo "=================================="
# Check if we're on a swarm manager
@@ -44,19 +44,19 @@ docker stack services $STACK_NAME
# Show service logs
echo "📋 Recent service logs:"
docker service logs ${STACK_NAME}_hive-backend --tail 20
docker service logs ${STACK_NAME}_hive-frontend --tail 20
docker service logs ${STACK_NAME}_whoosh-backend --tail 20
docker service logs ${STACK_NAME}_whoosh-frontend --tail 20
echo ""
echo "✅ Hive deployment completed!"
echo "🌐 Access your Hive cluster at: https://$DOMAIN"
echo "✅ WHOOSH deployment completed!"
echo "🌐 Access your WHOOSH cluster at: https://$DOMAIN"
echo "📊 Grafana dashboard: https://$DOMAIN/grafana"
echo "📈 Prometheus metrics: https://$DOMAIN/prometheus"
echo ""
echo "🔧 Useful commands:"
echo " docker stack services $STACK_NAME"
echo " docker stack ps $STACK_NAME"
echo " docker service logs ${STACK_NAME}_hive-backend"
echo " docker service logs ${STACK_NAME}_whoosh-backend"
echo " docker stack rm $STACK_NAME"
echo ""
@@ -75,4 +75,4 @@ else
echo "💡 It may take a few minutes for SSL certificates to be provisioned"
fi
echo "🎉 Deployment complete! The Hive cluster is now running on Docker Swarm."
echo "🎉 Deployment complete! The WHOOSH cluster is now running on Docker Swarm."