Add database adapter system, production deployment configs, and new dashboard components
- Add PostgreSQL and SQLite database adapters with factory pattern - Add migration script for SQLite to PostgreSQL - Add production Dockerfiles and docker-compose configs - Add deployment documentation and scripts - Add BIA sync dashboard and matching service - Add data completeness configuration and components - Add new dashboard components (BusinessImportanceComparison, ComplexityDynamics, etc.) - Update various services and routes - Remove deprecated management-parameters.json and taxonomy files
This commit is contained in:
@@ -73,7 +73,7 @@ app.use((req, res, next) => {
|
||||
// Health check
|
||||
app.get('/health', async (req, res) => {
|
||||
const jiraConnected = await dataService.testConnection();
|
||||
const cacheStatus = dataService.getCacheStatus();
|
||||
const cacheStatus = await dataService.getCacheStatus();
|
||||
|
||||
res.json({
|
||||
status: 'ok',
|
||||
|
||||
Reference in New Issue
Block a user