{"id":48740794,"url":"https://github.com/hvish/budget-manager-pwa","last_synced_at":"2026-04-18T10:15:51.542Z","repository":{"id":349291813,"uuid":"1201367435","full_name":"HVish/budget-manager-pwa","owner":"HVish","description":null,"archived":false,"fork":false,"pushed_at":"2026-04-05T06:33:29.000Z","size":454,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-05T08:23:54.943Z","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/HVish.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":null,"dco":null,"cla":null}},"created_at":"2026-04-04T15:28:32.000Z","updated_at":"2026-04-05T06:06:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/HVish/budget-manager-pwa","commit_stats":null,"previous_names":["hvish/budget-manager-pwa"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/HVish/budget-manager-pwa","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HVish%2Fbudget-manager-pwa","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HVish%2Fbudget-manager-pwa/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HVish%2Fbudget-manager-pwa/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HVish%2Fbudget-manager-pwa/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HVish","download_url":"https://codeload.github.com/HVish/budget-manager-pwa/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HVish%2Fbudget-manager-pwa/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31706766,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-12T06:22:27.080Z","status":"ssl_error","status_checked_at":"2026-04-12T06:21:52.710Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-04-12T07:02:35.982Z","updated_at":"2026-04-12T07:02:38.192Z","avatar_url":"https://github.com/HVish.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Budget Manager PWA\n\nPersonal budget management Progressive Web App built with React. Track wallets, transactions, and monthly budgets with a mobile-first dark-themed UI.\n\n## Tech Stack\n\n| Concern      | Choice                         |\n| ------------ | ------------------------------ |\n| Framework    | React 19 + TypeScript + Vite 8 |\n| Styling      | Tailwind CSS v4 + shadcn/ui    |\n| Client state | Zustand (with localStorage)    |\n| Server state | TanStack Query v5              |\n| Routing      | React Router v7                |\n| Auth         | Auth0                          |\n| HTTP client  | ky                             |\n| Charts       | Recharts                       |\n| Package mgr  | pnpm                           |\n\n## Getting Started\n\n### Prerequisites\n\n- Node.js 20+\n- pnpm 9+\n- A running [Budget Manager API](../budget-manager-api/) instance\n\n### Environment\n\nCreate a `.env.local` file:\n\n```env\nVITE_API_ORIGIN=https://your-api-host.com\nVITE_AUTH0_DOMAIN=your-auth0-domain\nVITE_AUTH0_CLIENT_ID=your-auth0-client-id\nVITE_AUTH0_AUDIENCE=your-auth0-audience\n```\n\n### Install \u0026 Run\n\n```sh\npnpm install\npnpm dev          # Starts dev server with HTTPS (mkcert)\n```\n\n### Other Commands\n\n```sh\npnpm build            # Type-check + production build\npnpm lint             # ESLint\npnpm format           # Prettier (write)\npnpm format:check     # Prettier (check only)\npnpm screenshots      # Capture screen screenshots (dev server must be running)\n```\n\n## Project Structure\n\n```\nsrc/\n├── api/            # ky client + TanStack Query hooks per resource\n├── components/\n│   ├── ui/         # shadcn/ui primitives + AppLink\n│   └── layout/     # app-shell, bottom-nav, page-header, page-header-bar\n├── features/       # Feature pages (auth, dashboard, wallets)\n├── stores/         # Zustand stores\n├── lib/            # Utilities (currency, date, categories, navigation)\n├── styles/         # Tailwind + CSS variables + view transitions\n├── routes.tsx      # Route definitions\n├── App.tsx         # Auth0Provider + QueryClient + Router\n└── main.tsx        # Entry point + service worker registration\n```\n\n## Key Features\n\n- **Dark theme** with green-tinted oklch color tokens\n- **View transitions** using the View Transition API with direction-aware animations (push, pop, modal, tab-switch)\n- **PWA** with service worker (network-first HTML, cache-first hashed assets)\n- **Mobile-first** layout with bottom navigation, FAB, and safe area insets\n\n## Documentation\n\n- **[CLAUDE.md](./CLAUDE.md)** — Conventions, commands, and project rules\n- **[DESIGN.md](./DESIGN.md)** — Complete design system spec\n- **[docs/decisions.md](./docs/decisions.md)** — Architectural decision records\n- **[docs/openapi.yaml](./docs/openapi.yaml)** — API spec (source of truth for types)\n\n## Deployment\n\nDeployed to AWS S3 + CloudFront via GitHub Actions.\n\n| Branch    | Environment | URL                                          |\n| --------- | ----------- | -------------------------------------------- |\n| `develop` | staging     | https://staging.budgetmanager.vishnusingh.in |\n| `main`    | production  | https://budgetmanager.vishnusingh.in         |\n\nManual deploys can be triggered via `workflow_dispatch` from the Actions tab.\n\n## Git Conventions\n\nCommits follow [Conventional Commits](https://www.conventionalcommits.org/): `type(scope): description`\n\nPre-commit hooks run lint-staged (ESLint + Prettier) automatically via Husky.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhvish%2Fbudget-manager-pwa","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhvish%2Fbudget-manager-pwa","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhvish%2Fbudget-manager-pwa/lists"}