mirror of
https://github.com/immich-app/immich.git
synced 2025-01-07 20:36:48 +01:00
11 lines
326 B
TypeScript
11 lines
326 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
|
import { AppModule } from './app.module';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create<NestExpressApplication>(AppModule);
|
|
|
|
app.set('trust proxy');
|
|
await app.listen(3000);
|
|
}
|
|
bootstrap();
|