Complete CHORUS Services integration with unified orchestration
- Docker Compose orchestration for all services - Unified management script (chorus.sh) with full lifecycle controls - Monitoring stack (Prometheus on 9092, Grafana on 3002) - Database initialization and networking configuration - Comprehensive documentation and usage guides - Port conflict resolution (avoid Cockpit on 9090) Components integrated: - WHOOSH: Orchestration platform (ports 3001, 8087) - BZZZ: P2P coordination system (port 8080) - SLURP: Context management system (port 8088) - COOEE: RL feedback system (port 8089) - Infrastructure: PostgreSQL, Redis, monitoring stack Ready for deployment and development.
This commit is contained in:
11
init-db.sql
Normal file
11
init-db.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
-- CHORUS Services Database Initialization
|
||||
|
||||
-- Create databases for each service
|
||||
CREATE DATABASE chorus_whoosh;
|
||||
CREATE DATABASE chorus_rl_tuner;
|
||||
CREATE DATABASE chorus_monitoring;
|
||||
|
||||
-- Grant permissions
|
||||
GRANT ALL PRIVILEGES ON DATABASE chorus_whoosh TO chorus;
|
||||
GRANT ALL PRIVILEGES ON DATABASE chorus_rl_tuner TO chorus;
|
||||
GRANT ALL PRIVILEGES ON DATABASE chorus_monitoring TO chorus;
|
||||
Reference in New Issue
Block a user