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,6 +1,6 @@
#!/usr/bin/env python3
"""
Database rebuild script for Hive platform.
Database rebuild script for WHOOSH platform.
Completely rebuilds the database schema from scratch using the unified schema.
"""
@@ -22,9 +22,9 @@ def get_database_config():
return {
'host': os.getenv('DB_HOST', 'localhost'),
'port': os.getenv('DB_PORT', '5432'),
'database': os.getenv('DB_NAME', 'hive'),
'database': os.getenv('DB_NAME', 'whoosh'),
'user': os.getenv('DB_USER', 'postgres'),
'password': os.getenv('DB_PASSWORD', 'hive123'),
'password': os.getenv('DB_PASSWORD', 'whoosh123'),
}
def execute_sql_file(connection, sql_file_path):
@@ -47,7 +47,7 @@ def execute_sql_file(connection, sql_file_path):
def main():
"""Main function to rebuild the database."""
logger.info("🔄 Starting Hive database rebuild...")
logger.info("🔄 Starting WHOOSH database rebuild...")
# Get database configuration
db_config = get_database_config()
@@ -106,7 +106,7 @@ def main():
connection.close()
logger.info("🔌 Database connection closed")
logger.info("🎉 Hive database rebuild completed successfully!")
logger.info("🎉 WHOOSH database rebuild completed successfully!")
logger.info("🚀 Ready for authentication and full platform functionality")
if __name__ == "__main__":