Match-Me is a modern dating platform built with Next.js 15, offering real-time messaging and a comprehensive user experience. This application allows users to connect, match, and communicate with potential partners in a seamless environment.
- User Authentication: Secure sign-in and sign-up functionality using NextAuth.js
- User Profiles: Create and edit detailed profiles with photos and personal information
- Member Discovery: Browse through potential matches with customizable filters
- Matching System: Like profiles and get notified when there's a mutual match
- Real-Time Messaging: Instant chat functionality powered by Pusher
- Message Management: Organized inbox and outbox for tracking conversations
- Image Uploads: Seamless image uploading and management via Cloudinary
- Responsive Design: Beautiful UI built with Tailwind CSS and NextUI components
- Framework: Next.js 15 with App Router
- Language: TypeScript
- Database: PostgreSQL via Neon.tech (serverless PostgreSQL)
- ORM: Prisma for database access and management
- Authentication: NextAuth.js for secure user authentication
- Real-time Communication: Pusher for instant messaging
- Media Management: Cloudinary for image uploads and optimization
- UI Components: NextUI for modern UI components
- Styling: Tailwind CSS for utility-first styling
- Form Management: React Hook Form for efficient form handling
- Validation: Zod for type-safe schema validation
Before you begin, ensure you have:
- Node.js 18.x or later
- npm or yarn
- A Neon.tech account for PostgreSQL database
- A Pusher account for real-time functionality
- Git
Create a .env.local
file in the root directory with the following variables:
DATABASE_URL="postgresql://[user]:[password]@[neon-hostname]/[db-name]"
NEXTAUTH_SECRET="your-nextauth-secret"
NEXT_PUBLIC_CLOUDINARY_CLOUD_NAME="your-cloudinary-name"
NEXT_PUBLIC_CLOUDINARY_API_KEY="your-cloudinary-api-key"
CLOUDINARY_API_SECRET="your-cloudinary-api-secret"
CLOUDINARY_URL="your-cloudinary-url"
UPLOAD_PRESET_NAME="your-upload-preset" # For unsigned uploads
PUSHER_APP_ID = "your-pusher-key"
NEXT_PUBLIC_PUSHER_APP_KEY = "your-pusher-api-key"
PUSHER_APP_SECRET = "your-pusher-secret"
NEXT_PUBLIC_PUSHER_APP_CLUSTER = "your-pusher-cluster"
- Clone the repository:
git clone https://github.com/yourusername/match-me.git cd match-me npm install npx prisma migrate dev npm run dev
Open http://localhost:3000 in your browser.