Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
69 lines
2.8 KiB
JavaScript
69 lines
2.8 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.HealthController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const swagger_1 = require("@nestjs/swagger");
|
|
const terminus_1 = require("@nestjs/terminus");
|
|
const public_decorator_1 = require("../auth/decorators/public.decorator");
|
|
let HealthController = class HealthController {
|
|
constructor(health, db) {
|
|
this.health = health;
|
|
this.db = db;
|
|
}
|
|
check() {
|
|
return this.health.check([
|
|
() => this.db.pingCheck('database'),
|
|
]);
|
|
}
|
|
live() {
|
|
return { status: 'ok', timestamp: new Date().toISOString() };
|
|
}
|
|
ready() {
|
|
return this.health.check([
|
|
() => this.db.pingCheck('database'),
|
|
]);
|
|
}
|
|
};
|
|
exports.HealthController = HealthController;
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
(0, public_decorator_1.Public)(),
|
|
(0, terminus_1.HealthCheck)(),
|
|
(0, swagger_1.ApiOperation)({ summary: 'Health check' }),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", []),
|
|
__metadata("design:returntype", void 0)
|
|
], HealthController.prototype, "check", null);
|
|
__decorate([
|
|
(0, common_1.Get)('live'),
|
|
(0, public_decorator_1.Public)(),
|
|
(0, swagger_1.ApiOperation)({ summary: 'Liveness probe' }),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", []),
|
|
__metadata("design:returntype", void 0)
|
|
], HealthController.prototype, "live", null);
|
|
__decorate([
|
|
(0, common_1.Get)('ready'),
|
|
(0, public_decorator_1.Public)(),
|
|
(0, terminus_1.HealthCheck)(),
|
|
(0, swagger_1.ApiOperation)({ summary: 'Readiness probe' }),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", []),
|
|
__metadata("design:returntype", void 0)
|
|
], HealthController.prototype, "ready", null);
|
|
exports.HealthController = HealthController = __decorate([
|
|
(0, swagger_1.ApiTags)('health'),
|
|
(0, common_1.Controller)('health'),
|
|
__metadata("design:paramtypes", [terminus_1.HealthCheckService,
|
|
terminus_1.TypeOrmHealthIndicator])
|
|
], HealthController);
|
|
//# sourceMappingURL=health.controller.js.map
|