Skip to content

DenZaiyy/next-blog

Repository files navigation

Next Blog

This is a exercice to learn NextJS with Prisma, TailwindCSS and MongoDB.

Prisma

To using prisma, we need to install it with :

npm i prisma @prisma/client

After installation, we need to generate the prisma client with:

npx prisma generate

And push changes to db:

npx prisma db push

Then we can use prisma to manage our database.

MongoDB

I'm using MongoDB Atlas to store data.

I using MongoDB Compass to manage my database.

Packages

I'm using multiple packages to make my life easier.