Files
retail-nest/src/main.ts
Phuoc Nguyen cc53f60bea first commit
2025-10-10 15:04:45 +07:00

9 lines
228 B
TypeScript

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();