Files
formularios_api/src/main.ts
T

9 lines
228 B
TypeScript
Raw Normal View History

2025-03-26 14:39:56 -06:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();