{"id":51100946,"url":"https://github.com/wiseweb-works/job-application-tracker","last_synced_at":"2026-06-24T10:32:08.516Z","repository":{"id":338704534,"uuid":"1157996219","full_name":"wiseweb-works/job-application-tracker","owner":"wiseweb-works","description":"A production-ready Job Application Tracker built entirely by AI to test the limits of agentic coding. Features Next.js 16, React 19, Prisma 6, and Tailwind CSS 4.","archived":false,"fork":false,"pushed_at":"2026-06-20T10:06:22.000Z","size":963,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-06-20T12:08:44.021Z","etag":null,"topics":["fullstack","nextjs-16","prisma-orm","react-19","server-actions","shadcn-ui","sqlite","tailwindcss-4","typescript"],"latest_commit_sha":null,"homepage":"https://job-application-tracker-steel.vercel.app","language":"Python","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/wiseweb-works.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-02-14T16:26:21.000Z","updated_at":"2026-06-20T10:06:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/wiseweb-works/job-application-tracker","commit_stats":null,"previous_names":["wiseweb-works/job-application-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wiseweb-works/job-application-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseweb-works%2Fjob-application-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseweb-works%2Fjob-application-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseweb-works%2Fjob-application-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseweb-works%2Fjob-application-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wiseweb-works","download_url":"https://codeload.github.com/wiseweb-works/job-application-tracker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wiseweb-works%2Fjob-application-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34726698,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-24T02:00:07.484Z","response_time":106,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["fullstack","nextjs-16","prisma-orm","react-19","server-actions","shadcn-ui","sqlite","tailwindcss-4","typescript"],"created_at":"2026-06-24T10:32:07.350Z","updated_at":"2026-06-24T10:32:08.509Z","avatar_url":"https://github.com/wiseweb-works.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Job Application Tracker\n\n![Project Preview](./project_preview.png?raw=true)\n\n\u003cdiv align=\"center\"\u003e\n\n[Live Demo](https://job-application-tracker-steel.vercel.app/)\n\n\u003c/div\u003e\n\n\u003e ⚠️ **NOTE**: This project was developed entirely using Artificial Intelligence (AI). The purpose of this work is to test the limits of AI capabilities, explore its design choices, and compare AI-generated solutions with my own projects. The code integrity, quality, and coding style may differ from projects I have manually developed.\n\nA production-quality Job Application Tracker built with modern web technologies including Next.js 16, Prisma, and Tailwind CSS 4.\n\n## 🚀 Features\n\n- **Full CRUD Operations**: Create, view, update, and delete job applications.\n- **Advanced Filtering**: Filter applications by status (Applied, Interview, Offer, Rejected, Ghosted).\n- **Dynamic Sorting**: Sort applications by application date or company name (ascending/descending).\n- **Search Functionality**: Real-time search by company name or job title.\n- **Responsive UI**: Fully responsive design using shadcn/ui components.\n- **Dark Mode**: Sleek dark mode interface enabled by default.\n- **Type Safety**: End-to-end type safety with TypeScript and Zod validation.\n\n## 🛠 Tech Stack\n\n### Frontend\n\n- **Framework**: Next.js 16 (App Router)\n- **State Management**: React 19 Hooks \u0026 Server Actions\n- **Forms**: React Hook Form with Zod validation\n- **Styling**: Tailwind CSS 4 \u0026 shadcn/ui\n- **Icons**: Lucide React\n\n### Backend \u0026 Database\n\n- **Database**: SQLite (Local)\n- **ORM**: Prisma 6\n- **Validation**: Zod Schemas\n\n### Testing \u0026 Quality\n\n- **Unit Testing**: Vitest \u0026 React Testing Library\n- **Linting**: ESLint with `eslint-plugin-unused-imports` for automated cleanup.\n\n### Database Schema (ER Diagram)\n\nBelow is the visual representation of the `JobApplication` model used in the database via Prisma ORM:\n\n```mermaid\nerDiagram\n    JobApplication {\n        string id PK\n        string companyName\n        string jobTitle\n        string status\n        string location\n        string salaryRange\n        datetime applicationDate\n        string notes\n        datetime createdAt\n        datetime updatedAt\n    }\n```\n\n## 📂 Project Structure\n\n- `app/`: Next.js App Router (Pages \u0026 Server Actions)\n  - `actions/`: Server actions for database operations.\n  - `applications/`: Application-specific routes and page logic.\n- `components/`: Reusable UI components.\n  - `ui/`: Base shadcn/ui components.\n  - `applications/`: Feature-specific components (Form, List, Card, filters).\n- `lib/`: Shared utilities and configurations.\n  - `repositories/`: Data access layer using Prisma.\n  - `zod/`: Shared validation schemas.\n- `tests/`: Unit and integration tests.\n- `prisma/`: Database schema and migrations.\n\n## 🛠 Getting Started\n\n### Prerequisites\n\n- Node.js 20+\n- pnpm 10+\n\n### Installation\n\n1.  **Install dependencies**:\n\n    ```bash\n    pnpm install\n    ```\n\n2.  **Initialize the database**:\n\n    ```bash\n    pnpm db:migrate\n    ```\n\n3.  **Run the development server**:\n    ```bash\n    pnpm dev\n    ```\n    Open [http://localhost:3000](http://localhost:3000) in your browser.\n\n## 📜 Available Scripts\n\n- `pnpm dev`: Starts the development server.\n- `pnpm build`: Generates Prisma client and builds the Next.js application.\n- `pnpm start`: Starts the production server.\n- `pnpm lint`: Runs ESLint for code quality checks.\n- `pnpm test`: Runs unit tests with Vitest.\n- `pnpm db:migrate`: Creates and applies database migrations.\n- `pnpm db:studio`: Opens Prisma Studio to view/edit data.\n\n## 🧪 Testing\n\nThe project uses Vitest for unit testing server actions and schema validation.\n\n```bash\n# Run all tests\npnpm test\n\n# Run tests in UI mode\npnpm test:ui\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiseweb-works%2Fjob-application-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwiseweb-works%2Fjob-application-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwiseweb-works%2Fjob-application-tracker/lists"}