2017-05-14 20:58:46 +00:00
|
|
|
import { NestFactory } from '@nestjs/core';
|
2018-01-02 15:14:44 +00:00
|
|
|
import { ApplicationModule } from './app.module';
|
2017-02-25 14:13:01 +00:00
|
|
|
|
2017-09-13 00:33:12 +00:00
|
|
|
async function bootstrap() {
|
2017-11-23 21:42:49 +00:00
|
|
|
const app = await NestFactory.create(ApplicationModule);
|
|
|
|
|
await app.listen(3000);
|
2017-09-13 00:33:12 +00:00
|
|
|
}
|
|
|
|
|
bootstrap();
|