@ahmedhegazee/nestjs-telescope
Version:
Advanced observability and monitoring solution for NestJS applications with ML-powered analytics, enterprise features, and production-ready scaling
18 lines • 663 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const core_1 = require("@nestjs/core");
const app_module_1 = require("./app.module");
require("reflect-metadata");
async function bootstrap() {
const app = await core_1.NestFactory.create(app_module_1.AppModule);
app.enableCors({
origin: true,
credentials: true
});
console.log('🔭 NestJS Telescope initialized');
console.log('📊 DevTools available at: http://localhost:8001');
console.log('🚀 Application starting on: http://localhost:3000');
await app.listen(3000);
}
bootstrap().catch(console.error);
//# sourceMappingURL=main.js.map