1
0
mirror of https://github.com/immich-app/immich.git synced 2025-03-26 22:20:21 +02:00
Jason Rasmussen 6e365b37db
fix(server): immich command ()
* fix: immich command

* chore: use absolute paths
2023-11-30 14:59:47 -06:00

7 lines
188 B
TypeScript
Executable File

import { CommandFactory } from 'nest-commander';
import { AppModule } from './app.module';
export async function bootstrap() {
await CommandFactory.run(AppModule, ['warn', 'error']);
}