feat: expose health and demo character APIs

This commit is contained in:
Bastian Wagner
2026-08-18 20:00:40 +02:00
parent 0615bb1841
commit e9b111daf8
14 changed files with 208 additions and 51 deletions

View File

@@ -5,6 +5,7 @@ import { configureApplication } from './app.config';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
configureApplication(app);
app.enableShutdownHooks();
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();