made k8s specific changes

This commit is contained in:
2026-03-17 10:14:53 +05:30
parent fdd620dfe2
commit 6c26389c4e
14 changed files with 64 additions and 415 deletions

View File

@@ -2,7 +2,8 @@
// learn more about it in the docs: https://pris.ly/d/prisma-schema
generator client {
provider = "prisma-client-js"
provider = "prisma-client-js"
binaryTargets = ["native", "linux-musl-openssl-3.0.x"]
}
datasource db {

View File

@@ -1,5 +1,5 @@
const { PrismaClient } = require('@prisma/client');
const bcrypt = require('bcrypt');
const bcrypt = require('bcryptjs');
const prisma = new PrismaClient();