mirror of
https://github.com/immich-app/immich.git
synced 2026-02-12 03:47:51 +03:00
9 lines
315 B
TypeScript
Executable File
9 lines
315 B
TypeScript
Executable File
import { CommandFactory } from 'nest-commander';
|
|
import { ImmichAdminModule } from 'src/apps/immich-admin.module';
|
|
import { LogLevel } from 'src/entities/system-config.entity';
|
|
|
|
export async function bootstrapImmichAdmin() {
|
|
process.env.LOG_LEVEL = LogLevel.WARN;
|
|
await CommandFactory.run(ImmichAdminModule);
|
|
}
|