{"id":29029751,"url":"https://github.com/ayush272002/algomark","last_synced_at":"2025-10-17T04:34:15.582Z","repository":{"id":299913711,"uuid":"1004611409","full_name":"Ayush272002/AlgoMark","owner":"Ayush272002","description":"A comprehensive web application for tracking your progress on company-specific LeetCode problems. Practice problems asked by top tech companies and monitor your preparation for technical interviews.","archived":false,"fork":false,"pushed_at":"2025-06-21T19:42:24.000Z","size":1154,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-06-26T08:46:23.993Z","etag":null,"topics":["leetcode","nextjs","postgresql","shadcn-ui"],"latest_commit_sha":null,"homepage":"https://algo-mark.ayush272002.me","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ayush272002.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-06-18T22:50:59.000Z","updated_at":"2025-06-21T19:42:27.000Z","dependencies_parsed_at":"2025-06-19T00:35:51.177Z","dependency_job_id":null,"html_url":"https://github.com/Ayush272002/AlgoMark","commit_stats":null,"previous_names":["ayush272002/algomark"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Ayush272002/AlgoMark","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayush272002%2FAlgoMark","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayush272002%2FAlgoMark/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayush272002%2FAlgoMark/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayush272002%2FAlgoMark/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ayush272002","download_url":"https://codeload.github.com/Ayush272002/AlgoMark/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ayush272002%2FAlgoMark/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262153783,"owners_count":23267308,"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":["leetcode","nextjs","postgresql","shadcn-ui"],"created_at":"2025-06-26T08:36:57.666Z","updated_at":"2025-10-17T04:34:10.535Z","avatar_url":"https://github.com/Ayush272002.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# AlgoMark - LeetCode Company Tracker\n\nA comprehensive web application for tracking your progress on company-specific LeetCode problems. Practice problems asked by top tech companies and monitor your preparation for technical interviews.\n\n![AlgoMark Landing Page](public/AlgoMark-Landing-Page.png)\n\n## 🚀 Features\n\n- **Company-Specific Problems**: Access curated problem sets from 100+ top tech companies\n- **Progress Tracking**: Mark problems as TODO, DONE, or REDO with visual progress indicators\n- **User Authentication**: Secure sign-up and sign-in with password validation\n- **Responsive Design**: Optimized for desktop and mobile devices\n- **Real-time Updates**: Instant progress synchronization with toast notifications\n- **Smart Analytics**: Track completion rates and identify areas for improvement\n- **Problem Management**: Direct links to LeetCode problems with difficulty and acceptance rate info\n\n## 🛠️ Tech Stack\n\n- **Frontend**: Next.js 14 (App Router), React 18, TypeScript\n- **Styling**: Tailwind CSS, shadcn/ui components\n- **Authentication**: NextAuth.js with credentials provider\n- **Database**: PostgreSQL with Prisma ORM\n- **Validation**: Zod for form and API validation\n- **Notifications**: Sonner for toast messages\n- **Icons**: Lucide React\n- **Password Hashing**: bcryptjs\n\n## 📋 Prerequisites\n\nBefore you begin, ensure you have the following installed:\n\n- Node.js 18.0 or later\n- pnpm package manager\n- PostgreSQL database\n\n## 🔧 Installation\n\n1. **Clone the repository**\n\n   ```bash\n   git clone https://github.com/Ayush272002/AlgoMark\n   cd AlgoMark\n   ```\n\n2. **Install dependencies**\n\n   ```bash\n   pnpm install\n   ```\n\n3. **Set up environment variables**\n\n   ```bash\n   cp .env.example .env\n   ```\n\n4. **Configure your environment variables in `.env`**\n\n   ```env\n   # Database\n   DATABASE_URL=\"postgresql://username:password@localhost:5432/leetcode_tracker\"\n\n   # NextAuth\n   NEXTAUTH_SECRET=\"your-secret-key-here\"\n   NEXTAUTH_URL=\"http://localhost:3000\"\n   ```\n\n5. **Set up the database**\n\n   ```bash\n   # Generate Prisma client\n   npx prisma generate\n\n   # Push the schema to your database\n   npx prisma db push\n\n   # Seed the database with sample data\n   npx prisma db seed\n   ```\n\n6. **Run the development server**\n\n   ```bash\n   pnpm dev\n   ```\n\n7. **Open your browser**\n   Navigate to [http://localhost:3000](http://localhost:3000)\n\n## 📁 Project Structure\n\n```\n├── app/                   # Next.js app directory\n│   ├── api/               # API routes\n│   ├── auth/              # Authentication pages\n│   ├── company/           # Company-specific pages\n│   ├── problems/          # Problems listing page\n│   └── page.tsx           # Landing page\n├── components/            # Reusable UI components\n│   ├── ui/                # shadcn/ui components\n│   ├── AuthProvider.tsx   # Authentication context\n│   └── Navbar.tsx         # Navigation component\n├── lib/                   # Utility functions\n│   ├── auth.ts            # NextAuth configuration\n│   ├── prisma.ts          # Prisma client\n├── prisma/                # Database schema and migrations\n├── interface/             # Interfaces\n├── types/                 # TypeScript type definitions\n├── zodTypes/              # Zod validation schemas\n```\n\n## 🤝 Contributing\n\nWe welcome contributions! Please follow these steps:\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Commit your changes (`git commit -m 'Add some amazing feature'`)\n4. Push to the branch (`git push origin feature/amazing-feature`)\n5. Open a Pull Request\n\n### Development Guidelines\n\n- Follow TypeScript best practices\n- Use Prettier for code formatting\n- Write meaningful commit messages\n- Add appropriate error handling\n- Update documentation for new features\n\n## 📄 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## 🙏 Acknowledgments\n\n- [LeetCode](https://leetcode.com) for providing the problem platform\n- [shadcn/ui](https://ui.shadcn.com) for the beautiful UI components\n- [Next.js](https://nextjs.org) team for the amazing framework\n- [Prisma](https://prisma.io) for the excellent ORM\n\n## 📊 Data Source\n\nThis application uses LeetCode problem data from the excellent repository:\n**[LeetCode-Questions-CompanyWise](https://github.com/krishnadey30/LeetCode-Questions-CompanyWise)** by [@krishnadey30](https://github.com/krishnadey30)\n\n## 📞 Support\n\nIf you have any questions or need help, please open an issue on GitHub.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayush272002%2Falgomark","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fayush272002%2Falgomark","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fayush272002%2Falgomark/lists"}