diff --git a/README.md b/README.md index fedc13ca9..873beb4ba 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,13 @@ This project is under heavy development, there will be continous functions, feat **!! NOT READY FOR PRODUCTION! DO NOT USE TO STORE YOUR ASSETS !!** +# Features + +[x] Upload assets(videos/images) +[x] View assets +[x] Quick navigation with drag scroll bar +[x] Auto Backup + # Development You can use docker compose for development, there are several services that compose Immich diff --git a/mobile/README.md b/mobile/README.md index 9304b780e..1955de246 100644 --- a/mobile/README.md +++ b/mobile/README.md @@ -1,16 +1 @@ -# immich_mobile - -A new Flutter project. - -## Getting Started - -This project is a starting point for a Flutter application. - -Few resources to get you started if this is your first Flutter project: - -- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) -- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) - -For help getting started with Flutter, view our -[online documentation](https://flutter.dev/docs), which offers tutorials, -samples, guidance on mobile development, and a full API reference. +# Immich Mobile Application - Flutter diff --git a/server/README.md b/server/README.md index 1d3ed0e47..3120cf65a 100644 --- a/server/README.md +++ b/server/README.md @@ -1,13 +1 @@ -# IMMICH - Server - -A self-hosted solution for mobile backup and viewing images/videos. - -# Requesquisite - -There is a tensorflow module running in the server so some package will be needed when building the Node's modules - -```bash -$ apt-get install make cmake gcc g++ -``` - - +# Immich Server- NestJs diff --git a/server/src/api-v1/asset/asset.controller.ts b/server/src/api-v1/asset/asset.controller.ts index dd756689a..1db90a780 100644 --- a/server/src/api-v1/asset/asset.controller.ts +++ b/server/src/api-v1/asset/asset.controller.ts @@ -118,7 +118,6 @@ export class AssetController { } /** Sending Partial Content With HTTP Code 206 */ - console.log('Sendinf file with type ', asset.mimeType); res.status(206).set({ 'Content-Range': `bytes ${start}-${end}/${size}`, diff --git a/server/src/modules/image-optimize/image-optimize.processor.ts b/server/src/modules/image-optimize/image-optimize.processor.ts index c53b1123c..10a13b478 100644 --- a/server/src/modules/image-optimize/image-optimize.processor.ts +++ b/server/src/modules/image-optimize/image-optimize.processor.ts @@ -66,7 +66,6 @@ export class ImageOptimizeProcessor { const basePath = this.configService.get('UPLOAD_LOCATION'); // const resizePath = savedAsset.originalPath.replace('/original/', '/thumb/'); - console.log(filename); // Create folder for thumb image if not exist const resizeDir = `${basePath}/${savedAsset.userId}/thumb/${savedAsset.deviceId}`;