xiaoju-survey/server/src/main.ts

12 lines
315 B
TypeScript
Raw Normal View History

2024-01-30 14:19:45 +00:00
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const PORT = process.env.PORT || 3000;
2024-01-30 14:19:45 +00:00
const app = await NestFactory.create(AppModule);
await app.listen(PORT);
console.log(`server is running at: http://127.0.0.1:${PORT}`);
2024-01-30 14:19:45 +00:00
}
2024-01-30 14:19:45 +00:00
bootstrap();