MCPcopy Create free account
hub / github.com/bsoc-bitbyte/busify / bootstrap

Function bootstrap

backend/src/main.ts:4–11  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import {AppModule} from './app.module';
3
4async function bootstrap() {
5 const app = await NestFactory.create(AppModule);
6 app.enableCors({
7 origin: [process.env.FRONTEND_URL],
8 credentials: true,
9 });
10 await app.listen(3333);
11}
12bootstrap();

Callers 1

main.tsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected