mirror of
				https://github.com/KevinMidboe/immich.git
				synced 2025-10-29 17:40:28 +00:00 
			
		
		
		
	* Implementing video upload features * setup image resize processor * Add video thumbnail with duration and icon * Fixed issue with video upload timeout and upper case file type on ios * Added video player page * Added video player page * Fixing video player not play on ios * Added partial file streaming for ios/android video request * Added nginx as proxy server for better file serving * update nginx and docker-compose file * Video player working correctly * Video player working correctly * Split duration to the second
		
			
				
	
	
		
			12 lines
		
	
	
		
			326 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			326 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { NestFactory } from '@nestjs/core';
 | |
| import { NestExpressApplication } from '@nestjs/platform-express';
 | |
| import { AppModule } from './app.module';
 | |
| 
 | |
| async function bootstrap() {
 | |
|   const app = await NestFactory.create<NestExpressApplication>(AppModule);
 | |
| 
 | |
|   app.set('trust proxy');
 | |
|   await app.listen(3000);
 | |
| }
 | |
| bootstrap();
 |