{"id":25133200,"url":"https://github.com/sahar-dev/nextmatch","last_synced_at":"2025-10-19T10:19:03.865Z","repository":{"id":275944328,"uuid":"927696172","full_name":"Sahar-dev/NextMatch","owner":"Sahar-dev","description":null,"archived":false,"fork":false,"pushed_at":"2025-02-13T14:24:15.000Z","size":767,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T01:28:05.163Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Sahar-dev.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-05T11:46:12.000Z","updated_at":"2025-02-13T14:24:19.000Z","dependencies_parsed_at":"2025-04-03T01:27:59.383Z","dependency_job_id":"06c10489-b4f8-485d-b6a5-8a6da1a522b5","html_url":"https://github.com/Sahar-dev/NextMatch","commit_stats":null,"previous_names":["sahar-dev/nextmatch"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Sahar-dev/NextMatch","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sahar-dev%2FNextMatch","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sahar-dev%2FNextMatch/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sahar-dev%2FNextMatch/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sahar-dev%2FNextMatch/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Sahar-dev","download_url":"https://codeload.github.com/Sahar-dev/NextMatch/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Sahar-dev%2FNextMatch/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262900158,"owners_count":23381661,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-02-08T15:34:38.678Z","updated_at":"2025-10-19T10:19:03.859Z","avatar_url":"https://github.com/Sahar-dev.png","language":"TypeScript","readme":"# 💌 NextMatch – Modern Dating Web App\r\n\r\n## 📖 Overview\r\n**NextMatch** is a modern dating-style web application built with **Next.js 13 (App Router)** and **TypeScript**.  \r\nIt allows users to create accounts, browse member profiles, upload photos, send messages, and build meaningful connections.  \r\n\r\nThis project demonstrates a full-stack setup with **Prisma ORM**, **TailwindCSS**, and **Docker Compose** for deployment.  \r\nIt is designed as a portfolio-ready project showcasing authentication, protected routes, and a polished UI.\r\n\r\n---\r\n\r\n## 🏗️ Project Structure\r\n```\r\nNextMatch\r\n│\r\n├── prisma/                 # Database layer\r\n│   ├── schema.prisma       # Database schema\r\n│   ├── seed.ts             # Seeds database with demo users\r\n│   └── membersData.ts      # Dummy members data (male/female profiles)\r\n│\r\n├── src/\r\n│   ├── app/                # Next.js App Router pages\r\n│   │   ├── auth/           # Login \u0026 registration pages\r\n│   │   ├── members/        # Member list, details, edit, chat, photos\r\n│   │   ├── lists/          # Saved matches / favorite lists\r\n│   │   ├── messages/       # Messaging system\r\n│   │   ├── layout.tsx      # Global layout wrapper\r\n│   │   └── page.tsx        # Landing page\r\n│   │\r\n│   ├── auth.ts             # Authentication setup\r\n│   ├── auth.config.ts      # Auth configuration\r\n│   ├── middleware.ts       # Middleware protecting private routes\r\n│   └── routes.ts           # Route constants\r\n│\r\n├── public/images/          # Sample profile images\r\n├── docker-compose.yml      # Docker configuration\r\n├── package.json            # Dependencies\r\n└── tailwind.config.ts      # Tailwind setup\r\n```\r\n\r\n---\r\n\r\n## ⚙️ Technologies Used\r\n- **Frontend**: Next.js 13 (App Router), React, TypeScript  \r\n- **Styling**: TailwindCSS, PostCSS  \r\n- **Database**: Prisma ORM (with seeding scripts)  \r\n- **Authentication**: Custom auth with middleware-protected routes  \r\n- **Deployment**: Docker Compose  \r\n- **Other Tools**: ESLint, Prettier, Vercel (for hosting)  \r\n\r\n---\r\n\r\n## 🛠️ Setup \u0026 Installation\r\n\r\n### 1. Clone the Repository\r\n```bash\r\ngit clone https://github.com/Sahar-dev/NextMatch.git\r\ncd NextMatch\r\n```\r\n\r\n### 2. Install Dependencies\r\n```bash\r\nnpm install\r\n```\r\n\r\n### 3. Configure Environment\r\nCreate a `.env` file in the root with database and auth secrets:\r\n```\r\nDATABASE_URL=\"postgresql://user:password@localhost:5432/nextmatch\"\r\nNEXTAUTH_SECRET=\"your-secret\"\r\n```\r\n\r\n### 4. Database Setup\r\nRun Prisma migrations and seed demo members:\r\n```bash\r\nnpx prisma migrate dev\r\nnpx prisma db seed\r\n```\r\n\r\n### 5. Run with Docker (Optional)\r\n```bash\r\ndocker-compose up --build\r\n```\r\n\r\n### 6. Start Development Server\r\n```bash\r\nnpm run dev\r\n```\r\nThen open: [http://localhost:3000](http://localhost:3000)\r\n\r\n---\r\n\r\n## 🚀 Features\r\n- 🔐 **User Registration \u0026 Login** – secure authentication system  \r\n- 👤 **Member Profiles** – view details, photos, and status  \r\n- 📸 **Photo Uploads** – add and manage user photos  \r\n- 💬 **Messaging \u0026 Chat** – send messages in real-time  \r\n- 📌 **Lists \u0026 Favorites** – save members into personalized lists  \r\n- 🎨 **Responsive Design** – styled with TailwindCSS for modern UI  \r\n\r\n---\r\n\r\n## 👨‍💻 Author\r\nDeveloped by **Sahar Marzougui**  \r\n- [LinkedIn](https://linkedin.com/in/sahar-marzougui)  \r\n- [GitHub](https://github.com/Sahar-dev)  \r\n\r\n---\r\n\r\n✨ This project is a **dating app clone** showcasing full-stack web development using **Next.js, Prisma, Tailwind, and Docker**.  \r\nPerfect as a **portfolio piece** to demonstrate authentication, profile management, messaging, and database integration.  \r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahar-dev%2Fnextmatch","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsahar-dev%2Fnextmatch","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsahar-dev%2Fnextmatch/lists"}