{"id":25683200,"url":"https://github.com/bhuvantenguria/apply_dashboard","last_synced_at":"2026-05-08T04:32:38.666Z","repository":{"id":277723668,"uuid":"932769761","full_name":"Bhuvantenguria/Apply_DashBoard","owner":"Bhuvantenguria","description":"Job-Application-Tracker","archived":false,"fork":false,"pushed_at":"2025-02-16T13:07:30.000Z","size":149,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-25T00:02:08.867Z","etag":null,"topics":["jwt-authentication","mongodb","mongodb-atlas","nextjs14","prisma-orm","tailwindcss"],"latest_commit_sha":null,"homepage":"https://apply-dash-board-sjp9.vercel.app/","language":"JavaScript","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/Bhuvantenguria.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,"zenodo":null}},"created_at":"2025-02-14T13:44:00.000Z","updated_at":"2025-02-16T13:07:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"21ba3343-015d-4ac3-95e8-fd0ef9630fb0","html_url":"https://github.com/Bhuvantenguria/Apply_DashBoard","commit_stats":null,"previous_names":["bhuvantenguria/apply_dashboard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Bhuvantenguria/Apply_DashBoard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhuvantenguria%2FApply_DashBoard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhuvantenguria%2FApply_DashBoard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhuvantenguria%2FApply_DashBoard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhuvantenguria%2FApply_DashBoard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Bhuvantenguria","download_url":"https://codeload.github.com/Bhuvantenguria/Apply_DashBoard/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Bhuvantenguria%2FApply_DashBoard/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261777378,"owners_count":23208113,"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":["jwt-authentication","mongodb","mongodb-atlas","nextjs14","prisma-orm","tailwindcss"],"created_at":"2025-02-24T16:41:48.329Z","updated_at":"2026-05-08T04:32:33.642Z","avatar_url":"https://github.com/Bhuvantenguria.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Next.js Job Tracker\n\nAn interactive, responsive, and fully-featured **Job Tracking** application built with **Next.js, Prisma ORM, MongoDB, and JWT authentication**. 🚀\n\n## ✨ Features\n\n- 🔑 **JWT Authentication** (Sign-up, Login, Logout)\n- 🗃️ **Prisma ORM** for database interactions\n- 📦 **MongoDB** as the primary database\n- 🔍 **Job Posting \u0026 Management** (CRUD operations)\n- 🎨 **Fully Responsive \u0026 Interactive UI**\n- 🚀 **Fast \u0026 Optimized Performance**\n\n## 🛠️ Tech Stack\n\n- **Frontend:** Next.js, Tailwind CSS\n- **Backend:** Next.js API Routes\n- **Database:** MongoDB with Prisma ORM\n- **Authentication:** JWT-based auth with secure cookie handling\n- **State Management:** React Context API\n\n## 📂 Folder Structure\n\n```\n📦 job-tracker\n├── 📁 prisma           # Prisma schema \u0026 migrations\n├── 📁 src\n│   ├── 📁 app         # Next.js pages \u0026 API routes\n│   ├── 📁 components  # Reusable UI components\n│   ├── 📁 contexts    # Global state management\n│   ├── 📁 lib         # Utility functions\n│   ├── 📁 styles      # Global styles \u0026 Tailwind config\n├── 📄 .env            # Environment variables\n├── 📄 next.config.js  # Next.js configuration\n├── 📄 package.json    # Dependencies \u0026 scripts\n└── 📄 README.md       # Project documentation\n```\n\n## 🚀 Getting Started\n\n### 1️⃣ Clone the Repository\n```sh\n git clone https://github.com/your-username/job-tracker.git\n cd job-tracker\n```\n\n### 2️⃣ Install Dependencies\n```sh\nnpm install  # or yarn install\n```\n\n### 3️⃣ Setup Environment Variables\nCreate a `.env` file in the root directory and add:\n```env\nDATABASE_URL=mongodb+srv://your-mongo-url\nJWT_SECRET=your-secret-key\n```\n\n### 4️⃣ Run Migrations \u0026 Seed Database\n```sh\nnpx prisma migrate dev --name init\nnpx prisma db seed\n```\n\n### 5️⃣ Start the Development Server\n```sh\nnpm run dev\n```\n\nYour app is now running at **http://localhost:3000** 🚀\n\n## 📝 API Endpoints\n\n| Method | Endpoint       | Description            |\n|--------|--------------|----------------------|\n| POST   | /api/auth/register  | User Registration |\n| POST   | /api/auth/login     | User Login       |\n| GET    | /api/jobs           | Get All Jobs     |\n| POST   | /api/jobs           | Create a Job     |\n| PUT    | /api/jobs/:id       | Update a Job     |\n| DELETE | /api/jobs/:id       | Delete a Job     |\n\n## 📌 Screenshots\n\n### 🌟 Login Page\n![Login Page](https://your-image-url.com/login.png)\n\n### 📜 Job Dashboard\n![Job Dashboard](https://your-image-url.com/dashboard.png)\n\n## 🛠️ Future Enhancements\n- ✅ Role-based access control (Admin, User)\n- ✅ Notifications for job applications\n- ✅ Real-time updates with WebSockets\n- ✅ Dark mode support\n\n## 🏆 Contributing\nContributions are welcome! Feel free to submit a pull request.\n\n## 📜 License\nThis project is licensed under the MIT License.\n\n---\n\n🔥 Built with ❤️ using Next.js, Prisma, and MongoDB!\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhuvantenguria%2Fapply_dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbhuvantenguria%2Fapply_dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbhuvantenguria%2Fapply_dashboard/lists"}