feat: integrate Prisma for database management

This commit is contained in:
2026-02-26 13:14:09 -03:00
parent 2f29430b28
commit e60752743f
12 changed files with 1390 additions and 14 deletions

View File

@@ -3,6 +3,6 @@ import { AppModule } from './app.module';
async function bootstrap() {
const app = await NestFactory.create(AppModule);
await app.listen(process.env.PORT ?? 3020);
await app.listen(process.env.PORT ?? 3000);
}
bootstrap();