mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
8 lines
315 B
TypeScript
Executable file
8 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);
|
|
}
|