Complete implementation: - Go-based search service with PostgreSQL and Redis backend - BACKBEAT SDK integration for beat-aware search operations - Docker containerization with multi-stage builds - Comprehensive API endpoints for project analysis and search - Database migrations and schema management - GITEA integration for repository management - Team composition analysis and recommendations Key features: - Beat-synchronized search operations with timing coordination - Phase-based operation tracking (started → querying → ranking → completed) - Docker Swarm deployment configuration - Health checks and monitoring - Secure configuration with environment variables Architecture: - Microservice design with clean API boundaries - Background processing for long-running analysis - Modular internal structure with proper separation of concerns - Integration with CHORUS ecosystem via BACKBEAT timing 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
195 B
SQL
6 lines
195 B
SQL
-- Rollback initial schema
|
|
DROP TABLE IF EXISTS slurp_submissions;
|
|
DROP TABLE IF EXISTS team_assignments;
|
|
DROP TABLE IF EXISTS agents;
|
|
DROP TABLE IF EXISTS team_roles;
|
|
DROP TABLE IF EXISTS teams; |