mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
9 lines
258 B
TypeScript
Executable File
9 lines
258 B
TypeScript
Executable File
import { LogLevel } from '@app/infra/entities';
|
|
import { CommandFactory } from 'nest-commander';
|
|
import { AppModule } from './app.module';
|
|
|
|
export async function bootstrap() {
|
|
process.env.LOG_LEVEL = LogLevel.WARN;
|
|
await CommandFactory.run(AppModule);
|
|
}
|