* feat: wip upload module * feat: local storage and serve local images * feat: protect against injections * feat: server local and s3 files * fix: use storage location when serving local files * feat: cross field env validation
19 lines
473 B
TypeScript
19 lines
473 B
TypeScript
import { NestFactory } from '@nestjs/core';
|
|
import { ValidationPipe } from '@nestjs/common';
|
|
import { AppModule } from './app.module';
|
|
import { graphqlUploadExpress } from 'graphql-upload';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create(AppModule, { cors: true });
|
|
|
|
// Apply validation pipes globally
|
|
app.useGlobalPipes(new ValidationPipe());
|
|
|
|
// Graphql file upload
|
|
app.use(graphqlUploadExpress());
|
|
|
|
await app.listen(3000);
|
|
}
|
|
|
|
bootstrap();
|