mirror of
https://github.com/immich-app/immich.git
synced 2025-05-24 02:13:51 -04:00
11 lines
210 B
TypeScript
11 lines
210 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
|
|
await app.listen(3001);
|
|
}
|
|
|
|
bootstrap();
|