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

@@ -2,7 +2,7 @@ version: '3.8'
services:
# Development Frontend with Hot Reload
hive-frontend-dev:
whoosh-frontend-dev:
build:
context: ./frontend
dockerfile: Dockerfile.dev
@@ -21,19 +21,19 @@ services:
- ./frontend/.env.development:/app/.env:ro
environment:
- NODE_ENV=development
- VITE_API_BASE_URL=https://hive.home.deepblack.cloud
- VITE_WS_BASE_URL=https://hive.home.deepblack.cloud
- VITE_API_BASE_URL=https://whoosh.home.deepblack.cloud
- VITE_WS_BASE_URL=https://whoosh.home.deepblack.cloud
- VITE_ENABLE_DEBUG_MODE=true
- VITE_LOG_LEVEL=debug
- VITE_DEV_MODE=true
networks:
- hive-dev-network
- whoosh-dev-network
depends_on:
- hive-backend-dev
- whoosh-backend-dev
command: npm run dev
# Development Backend (optional - can use production backend)
hive-backend-dev:
whoosh-backend-dev:
build:
context: ./backend
dockerfile: Dockerfile.dev
@@ -42,19 +42,19 @@ services:
volumes:
- ./backend:/app:ro
environment:
- DATABASE_URL=postgresql://hive:hivepass@host.docker.internal:5433/hive # Connect to production DB
- REDIS_URL=redis://:hivepass@host.docker.internal:6380
- DATABASE_URL=postgresql://whoosh:whooshpass@host.docker.internal:5433/whoosh # Connect to production DB
- REDIS_URL=redis://:whooshpass@host.docker.internal:6380
- ENVIRONMENT=development
- LOG_LEVEL=debug
- CORS_ORIGINS=http://localhost:3000,https://hive.home.deepblack.cloud
- CORS_ORIGINS=http://localhost:3000,https://whoosh.home.deepblack.cloud
- HOT_RELOAD=true
networks:
- hive-dev-network
- whoosh-dev-network
extra_hosts:
- "host.docker.internal:host-gateway" # Access host services
networks:
hive-dev-network:
whoosh-dev-network:
driver: bridge
# Note: This setup uses production database/redis but with dev frontend/backend