Next.js Project with Prisma, Tailwind CSS, react-beautiful-dnd, NextAuth.js, Shadcn, and Zod
This project is a full-stack application built using Next.js, styled with Tailwind CSS, and features drag-and-drop functionality with react-beautiful-dnd. It utilizes Prisma as an ORM to interact with the database, NextAuth.js for handling authentication, Shadcn for UI components, and Zod for schema validation.
Before you begin, ensure you have met the following requirements:
Clone the repository:
git clone https://github.com/bejarano-tech/hello-kanban.git
cd hello-kanban
npm install
cp .env.example .env.local
Initialize your database using Prisma:
npx prisma generate
npx prisma db push
To start the development server, run:
npm run dev