mirror of
https://github.com/immich-app/immich.git
synced 2025-01-08 12:56:48 +01:00
12 lines
326 B
TypeScript
12 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();
|