This project is a full-stack CRUD (create, read, update, delete) application using Prisma and Next.js
copy the .env.example
file to .env
DATABASE_URL="mysql://root:123456@localhost:3306/prisma-next"
Install dependencies
npm install
Generate the Prisma Client
npx prisma generate
Migrate Database with Prisma
npx prisma migrate dev
Start the application...
npm run dev
Runs the app in the development mode. Open http://localhost:3000 to view it in your browser.