base con autenticacion, registro, modulo encuestas

This commit is contained in:
2025-06-16 12:02:22 -04:00
commit 475e0754df
411 changed files with 26265 additions and 0 deletions

16
apps/api/src/main.ts Normal file
View File

@@ -0,0 +1,16 @@
import { AppModule } from '@/app.module';
import { bootstrap } from '@/bootstrap';
import { NestFactory } from '@nestjs/core';
import { NestExpressApplication } from '@nestjs/platform-express';
const main = async () => {
const app = await NestFactory.create<NestExpressApplication>(AppModule, {
bufferLogs: true,
});
await bootstrap(app);
};
main().catch((error) => {
console.log(error);
process.exit(1);
});