update npm packages and healthcheck endpoint

This commit is contained in:
Joe Arndt 2026-02-09 17:49:58 -06:00
parent 164e51bf03
commit b11f78046f
4 changed files with 592 additions and 1883 deletions

View file

@ -3,5 +3,7 @@ import { Controller, Get } from '@nestjs/common';
@Controller()
export class AppController {
@Get('health')
health(): void {}
health() {
return { status: 'healthy' };
}
}