mirror of
https://github.com/stonith404/pingvin-share.git
synced 2024-11-16 04:10:35 +01:00
653d72bcb9
* add first concept * finished first concept * allow 3 uploads at same time * retry if chunk failed * updated clean temporary files job * fix throttling for chunk uploads * update tests * remove multer * migrate from `MAX_FILE_SIZE` to `MAX_SHARE_SIZE` * improve error handling if file failed to upload * fix promise limit * improve file progress
24 lines
887 B
TypeScript
24 lines
887 B
TypeScript
import { ClassSerializerInterceptor, ValidationPipe } from "@nestjs/common";
|
|
import { NestFactory, Reflector } from "@nestjs/core";
|
|
import { NestExpressApplication } from "@nestjs/platform-express";
|
|
import * as bodyParser from "body-parser";
|
|
import * as cookieParser from "cookie-parser";
|
|
import * as fs from "fs";
|
|
import { AppModule } from "./app.module";
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create<NestExpressApplication>(AppModule);
|
|
app.useGlobalPipes(new ValidationPipe({ whitelist: true }));
|
|
app.useGlobalInterceptors(new ClassSerializerInterceptor(app.get(Reflector)));
|
|
|
|
app.use(bodyParser.raw({type:'application/octet-stream', limit:'20mb'}));
|
|
app.use(cookieParser());
|
|
app.set("trust proxy", true);
|
|
|
|
await fs.promises.mkdir("./data/uploads/_temp", { recursive: true });
|
|
|
|
app.setGlobalPrefix("api");
|
|
await app.listen(8080);
|
|
}
|
|
bootstrap();
|