feat: Implement Stripe integration for subscription management, including new services, controllers, Prisma models, and webhook handling.

This commit is contained in:
pradeepkumar
2026-03-07 10:09:50 +05:30
parent b3f43bf2e5
commit d1e4e12510
13 changed files with 860 additions and 9 deletions

View File

@@ -11,7 +11,9 @@ import { TransformInterceptor } from './common/interceptors';
async function bootstrap() {
const logger = new Logger('Bootstrap');
const app = await NestFactory.create<NestExpressApplication>(AppModule);
const app = await NestFactory.create<NestExpressApplication>(AppModule, {
rawBody: true,
});
const configService = app.get(ConfigService);
const port = configService.get<number>('app.port') || 3001;