mirror of
https://github.com/immich-app/immich.git
synced 2024-12-22 01:47:08 +02:00
c234c95880
* Render when a new asset is uploaded from WebSocket notification * Update Readme
16 lines
456 B
TypeScript
16 lines
456 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { NestExpressApplication } from '@nestjs/platform-express';
|
|
import { AppModule } from './app.module';
|
|
import { RedisIoAdapter } from './middlewares/redis-io.adapter.middleware';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create<NestExpressApplication>(AppModule);
|
|
|
|
app.set('trust proxy');
|
|
|
|
app.useWebSocketAdapter(new RedisIoAdapter(app));
|
|
|
|
await app.listen(3000);
|
|
}
|
|
bootstrap();
|