36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import Fastify from 'fastify';
|
|
import cors from '@fastify/cors';
|
|
import pino from 'pino';
|
|
import { config } from './config/index.js';
|
|
import { pool } from './data/db.js';
|
|
import { registerAuth, registerAuthRoutes } from './auth/middleware.js';
|
|
import { registerAnomalyRoutes } from './api/anomalies.js';
|
|
import { registerBaselineRoutes } from './api/baselines.js';
|
|
import { registerGovernanceRoutes } from './api/governance.js';
|
|
import { registerIngestionRoutes } from './api/ingestion.js';
|
|
|
|
const logger = pino({ name: 'dd0c-cost', level: config.LOG_LEVEL });
|
|
|
|
const app = Fastify({ logger: true });
|
|
|
|
await app.register(cors, { origin: config.CORS_ORIGIN });
|
|
|
|
registerAuth(app, config.JWT_SECRET, pool);
|
|
|
|
app.get('/health', async () => ({ status: 'ok', service: 'dd0c-cost' }));
|
|
|
|
registerAuthRoutes(app, config.JWT_SECRET, pool);
|
|
registerIngestionRoutes(app);
|
|
registerAnomalyRoutes(app);
|
|
registerBaselineRoutes(app);
|
|
registerGovernanceRoutes(app);
|
|
|
|
try {
|
|
await app.listen({ port: config.PORT, host: '0.0.0.0' });
|
|
logger.info({ port: config.PORT }, 'dd0c/cost started');
|
|
} catch (err) {
|
|
logger.fatal(err, 'Failed to start');
|
|
process.exit(1);
|
|
}
|
|
// Build: 2026-03-01T06:43:58Z
|