mirror of
https://github.com/samsonjs/immich.git
synced 2026-03-26 09:25:51 +00:00
* feat(server): Support webm without transcoding. Transcoding result doesn't appear to be used by anything expect for quicktime. * feat(server): Fix the asset uploader for .avi It needs to be transcoded. * feat(server): Most browsers doesn't support avi so use mp4. * feat(server): Address PR comments * Addressed the PR comments I moved the function that checks the mimetype to a central location in asset-utils and made tests for it. * Rollbacked to the way transcoder was decising things to transcode. |
||
|---|---|---|
| .. | ||
| apps | ||
| bin | ||
| libs | ||
| openapi-generator/templates/serialization/native | ||
| .dockerignore | ||
| .eslintrc.js | ||
| .gitignore | ||
| .prettierignore | ||
| .prettierrc | ||
| Dockerfile | ||
| immich-openapi-specs.json | ||
| LICENSE | ||
| nest-cli.json | ||
| openapitools.json | ||
| package-lock.json | ||
| package.json | ||
| README.md | ||
| start-microservices.sh | ||
| start-server.sh | ||
| tsconfig.build.json | ||
| tsconfig.json | ||
How to run migration
- Attached to the container shell
- Run
npm run typeorm -- migration:generate ./libs/database/src/<migration-name> -d libs/database/src/config/database.config.ts - Check if the migration file makes sense
- Move the migration file to folder
server/libs/database/src/migrationsin your code editor.