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

@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*
# Environment variables with production defaults
ENV DATABASE_URL=postgresql://hive:hive@postgres:5432/hive
ENV DATABASE_URL=postgresql://whoosh:whoosh@postgres:5432/whoosh
ENV REDIS_URL=redis://redis:6379/0
ENV LOG_LEVEL=info
ENV PYTHONUNBUFFERED=1
@@ -32,8 +32,8 @@ COPY . .
COPY ccli_src /app/ccli_src
# Create non-root user
RUN useradd -m -u 1000 hive && chown -R hive:hive /app
USER hive
RUN useradd -m -u 1000 whoosh && chown -R whoosh:whoosh /app
USER whoosh
# Expose port
EXPOSE 8000