{"id":49378419,"url":"https://github.com/darkvard/job-tracker","last_synced_at":"2026-04-28T03:46:53.027Z","repository":{"id":347588711,"uuid":"1194428774","full_name":"darkvard/job-tracker","owner":"darkvard","description":"Vibe-coded job tracking web app with Chi and React","archived":false,"fork":false,"pushed_at":"2026-04-18T02:18:42.000Z","size":424,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-28T03:46:45.489Z","etag":null,"topics":["clean-architecture","docker","go","postgresql","react","redis","tailwindcss","typescript"],"latest_commit_sha":null,"homepage":"","language":"Go","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/darkvard.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,"notice":null,"maintainers":null,"copyright":null,"agents":"AGENTS.md","dco":null,"cla":null}},"created_at":"2026-03-28T10:47:41.000Z","updated_at":"2026-04-18T02:18:46.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/darkvard/job-tracker","commit_stats":null,"previous_names":["darkvard/job-tracker"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/darkvard/job-tracker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkvard%2Fjob-tracker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkvard%2Fjob-tracker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkvard%2Fjob-tracker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkvard%2Fjob-tracker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/darkvard","download_url":"https://codeload.github.com/darkvard/job-tracker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/darkvard%2Fjob-tracker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32365519,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-27T20:07:02.737Z","status":"online","status_checked_at":"2026-04-28T02:00:07.250Z","response_time":56,"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":["clean-architecture","docker","go","postgresql","react","redis","tailwindcss","typescript"],"created_at":"2026-04-28T03:46:51.028Z","updated_at":"2026-04-28T03:46:53.012Z","avatar_url":"https://github.com/darkvard.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Job Tracker\n\nSingle-user job application tracker. Track applications, monitor status transitions, and visualize your pipeline with a dashboard and analytics.\n\n---\n\n## Stack\n\n| Layer | Tech |\n|---|---|\n| Backend | Go 1.25 · Chi v5 · GORM · PostgreSQL 15 |\n| Cache | Redis 8 |\n| Frontend | React 18 · Vite · Tailwind CSS · shadcn/ui · Recharts |\n| Auth | JWT (HS256) · bcrypt |\n| Infra | Docker Compose · air hot reload · golang-migrate · mockery |\n\n---\n\n## Architecture\n\n```\n┌─────────────────────────────────────────────┐\n│              Browser (React SPA)            │\n│  Vite · React Query · React Router · Axios  │\n└──────────────────┬──────────────────────────┘\n                   │ HTTP/REST\n┌──────────────────▼──────────────────────────┐\n│              Go API (Chi)                   │\n│  ┌─────────┐  ┌─────────────┐  ┌─────────┐ │\n│  │ Handler │→ │  Use Cases  │→ │  Domain │ │\n│  │ (infra) │  │  (app layer)│  │ (pure)  │ │\n│  └────┬────┘  └──────┬──────┘  └─────────┘ │\n│       │              │ TxManager             │\n│  ┌────▼──────────────▼──────────────────┐   │\n│  │   Infrastructure (GORM · Redis)      │   │\n│  └──────────┬──────────────┬────────────┘   │\n└─────────────┼──────────────┼────────────────┘\n              │              │\n   ┌──────────▼──┐    ┌──────▼──────┐\n   │ PostgreSQL  │    │   Redis 8   │\n   │  (port 5433)│    │ (port 6380) │\n   └─────────────┘    └─────────────┘\n\nClean Architecture: domain ← application ← infrastructure\nArrows never reverse. GORM/Redis never imported by domain or application.\n```\n\n---\n\n## Prerequisites\n\n- Docker with Compose v2 plugin (`docker compose` — ships with Docker Desktop and Docker Engine ≥ 23)\n- Go 1.25\n- Node.js 24\n\n---\n\n## Getting Started\n\n```bash\n# 1. Clone\ngit clone https://github.com/darkvard/job-tracker.git \u0026\u0026 cd job-tracker\n\n# 2. Configure\ncp .env.example .env\n# Edit .env — set JWT_SECRET to any 32+ character random string\n\n# 3. Build image (first time only)\nmake docker-build\n\n# 4. Start containers\nmake docker-up\n\n# 5. Apply migrations\nmake migrate-up\n\n# 6. (Optional) Load demo data\nmake seed   # login: demo@tracker.com / demo123\n```\n\nOpen: http://localhost:5173\n\nAPI docs: http://localhost:3001/api/v1/swagger/index.html\n\n---\n\n## Daily Workflow\n\n```bash\nmake docker-up        # start all containers\nmake docker-down      # stop all containers\nmake migrate-up       # apply pending migrations\nmake logs             # tail all logs\nmake logs-api         # tail backend logs only\nmake test             # unit + integration tests\nmake lint             # golangci-lint\nmake seed             # reload demo data (idempotent)\n```\n\n\u003e Source is mounted as a volume — Go (air) and React (Vite) both hot-reload on save.\n\u003e Only run `make docker-build` when `go.mod` or `Dockerfile.dev` changes.\n\n---\n\n## Ports\n\n| Service | URL |\n|---|---|\n| Frontend | http://localhost:5173 |\n| Backend API | http://localhost:3001 |\n| Swagger UI | http://localhost:3001/api/v1/swagger/index.html |\n| PostgreSQL | localhost:5433 |\n| Redis | localhost:6380 |\n\n---\n\n## License\n\nMIT\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkvard%2Fjob-tracker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdarkvard%2Fjob-tracker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdarkvard%2Fjob-tracker/lists"}