mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-12-08 20:29:05 +00:00
* Fixed problem with docker-compose not updating new files in the multi-stage build. * Update readme with a new screenshot
26 lines
625 B
TypeScript
26 lines
625 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
import { Logger } from '@nestjs/common';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule);
|
|
|
|
await app.listen(3001, () => {
|
|
if (process.env.NODE_ENV == 'development') {
|
|
Logger.log(
|
|
'Running Immich Microservices in DEVELOPMENT environment',
|
|
'IMMICH MICROSERVICES',
|
|
);
|
|
}
|
|
|
|
if (process.env.NODE_ENV == 'production') {
|
|
Logger.log(
|
|
'Running Immich Microservices in PRODUCTION environment',
|
|
'IMMICH MICROSERVICES',
|
|
);
|
|
}
|
|
});
|
|
}
|
|
|
|
bootstrap();
|