Skip to content

Instantly share code, notes, and snippets.

@SergeyMell
Created July 30, 2020 21:12
Show Gist options
  • Save SergeyMell/09f92b26b662149171578f3d4a0a05f7 to your computer and use it in GitHub Desktop.
Save SergeyMell/09f92b26b662149171578f3d4a0a05f7 to your computer and use it in GitHub Desktop.
import { NestFactory } from '@nestjs/core';
import { AppModule } from './app.module';
import { setupAdminPanel } from './admin-panel/admin-panel.plugin';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
/**
* Setup Admin panel
*/
await setupAdminPanel(app);
await app.listen(3000);
}
bootstrap();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment