1-Install the Prisma CLI:
npm i -D prisma
2-Initialize a Prisma project:
npx prisma init --datasource-provider mongodb
3-Set the DATABASE_URL in the .env file:
Open the .env
file and set the DATABASE_URL
environment variable to the connection string for your MongoDB database.
4-Generate the Prisma Client:
npx prisma generate

model User {
id String @id @map("_id") @default(auto()) @db.ObjectId
email String @unique
password String
createdAt DateTime @default(now())
updatedAt DateTime @updatedAt
}
npx prisma db push
npx prisma studio