Update Readme

This commit is contained in:
Alex Tran 2022-02-09 20:46:37 -06:00
parent a27d03fb69
commit ef269fe179
2 changed files with 3 additions and 10 deletions

View file

@ -36,11 +36,13 @@ This project is under heavy development, there will be continous functions, feat
[x] Auto Backup
[x] Support HEIC
# Development
You can use docker compose for development, there are several services that compose Immich
1. The server
1. NestJs
2. PostgreSQL
3. Redis
4. Nginx

View file

@ -66,15 +66,6 @@ export class ImageOptimizeProcessor {
}
await this.assetRepository.update(savedAsset, { resizePath: resizePath });
// Send file to object detection after resizing
// const detectionJob = await this.machineLearningQueue.add(
// 'object-detection',
// {
// resizePath,
// },
// { jobId: randomUUID() },
// );
});
}
});