A modern project management application built with Next.js App Router, featuring drag-and-drop functionality, user authentication, and comprehensive task management capabilities.
- 馃幆 Task Management: Create, edit, and organize tasks with priorities and due dates
- 馃攧 Drag & Drop: Intuitive drag-and-drop interface powered by @dnd-kit
- 馃懁 Authentication: Secure user authentication with NextAuth.js
- 馃搳 Progress Tracking: Visual progress indicators and analytics with Recharts
- 馃寵 Dark Mode: Built-in theme switching with next-themes
- 馃摫 Responsive Design: Mobile-first design with Tailwind CSS
- 馃攳 API Documentation: Interactive API documentation available
- 馃摑 Form Validation: Robust form handling with React Hook Form and Zod
- Framework: Next.js 15 with App Router
- Runtime: Bun
- Database: MongoDB with Prisma ORM
- Authentication: Auth.js v5
- UI Components: Shadcn
- Styling: Tailwind CSS v4
- Drag & Drop: @dnd-kit
- Forms: React Hook Form with Zod validation
- Charts: Recharts
- Animations: Framer Motion
- Bun (latest version)
- MongoDB database
- Node.js 18+ (for compatibility)
git clone https://github.com/Aymenbachiri/project-management-board.git
cd project-managment-boardbun installCreate a .env file in the root directory and copy the contents from env.example:
cp env.example .envThen fill in your environment variables in the .env file with your actual values.
Generate Prisma client and run migrations:
bunx prisma generate
bunx prisma db pushbun devThe application will be available at http://localhost:3000.
bun dev- Start development server with Turbopackbun run build- Build the application for productionbun start- Start the production serverbun lint- Run ESLint for code linting
Interactive API documentation is available at /api-doc when the application is running.
Visit http://localhost:3000/api-doc to explore the API endpoints and test them directly in the browser.
- @dnd-kit/core & @dnd-kit/sortable: Drag and drop functionality
- @prisma/client: Database ORM
- next-auth: Authentication solution
- @radix-ui/*: Accessible UI primitives
- react-hook-form: Form state management
- zod: Schema validation
- recharts: Data visualization
- tailwindcss: Utility-first CSS framework