{"id":24657708,"url":"https://github.com/benmukebo/wallet-app","last_synced_at":"2026-04-11T17:35:50.306Z","repository":{"id":273473992,"uuid":"919176762","full_name":"BenMukebo/wallet-app","owner":"BenMukebo","description":"Personal Finance Management Application to track expenses, monitor budgets, and visualize spending patterns across multiple accounts.","archived":false,"fork":false,"pushed_at":"2025-01-21T08:54:08.000Z","size":641,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-08-19T13:41:51.286Z","etag":null,"topics":["nextjs","shadcn-ui","supabase","typescript"],"latest_commit_sha":null,"homepage":"https://wallet-app-bkm7.vercel.app","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/BenMukebo.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-01-19T22:11:55.000Z","updated_at":"2025-05-25T11:39:55.000Z","dependencies_parsed_at":"2025-01-21T06:23:23.706Z","dependency_job_id":"2275e18e-9afd-4dd8-97f4-621a5fcc4c4d","html_url":"https://github.com/BenMukebo/wallet-app","commit_stats":null,"previous_names":["benmukebo/wallet-app"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/BenMukebo/wallet-app","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fwallet-app","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fwallet-app/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fwallet-app/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fwallet-app/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/BenMukebo","download_url":"https://codeload.github.com/BenMukebo/wallet-app/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/BenMukebo%2Fwallet-app/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31689762,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-11T13:07:20.380Z","status":"ssl_error","status_checked_at":"2026-04-11T13:06:47.903Z","response_time":54,"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":["nextjs","shadcn-ui","supabase","typescript"],"created_at":"2025-01-26T00:34:00.327Z","updated_at":"2026-04-11T17:35:50.291Z","avatar_url":"https://github.com/BenMukebo.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Wallet Web Application\n\n\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003ePersonal Finance Management Application\u003c/h1\u003e\n  \u003cp\u003eTrack expenses, monitor budgets, and visualize spending patterns across multiple accounts.\u003c/p\u003e\n\n  \u003ca href=\"https://wallet-app-pro.vercel.app/\"\u003eLive Demo\u003c/a\u003e\n\u003c/div\u003e\n\n## Overview\n\n*Track multiple accounts in one place*\n\n![alt text](image.png)\n\n*Manage and categorize your transactions*\n\n![alt text](image-1.png)\n\n## Demo Access\n\nTry out the application using these demo credentials:\n\n```bash\nEmail: eric.test@gmail.com\nPassword: 123\n```\n\n**Note:** This is a demo account with sample data. For security reasons, please use your own credentials in production.\n\n## Key Features\n\n- 📊 **Multi-Account Management** - Track bank, mobile money, and cash accounts\n- 📈 **Dynamic Reports** - Generate custom reports for any time period\n- 💰 **Budget Tracking** - Set and monitor spending limits\n- 🏷️ **Smart Categorization** - Organize transactions with categories and subcategories\n- 📱 **Responsive Design** - Works seamlessly on desktop and mobile\n- 📊 **Visual Analytics** - Beautiful charts and spending breakdowns\n\n## Tech Stack\n\n- **Framework:** Next.js 14, React\n- **Styling:** Tailwind CSS\n- **Database:** PostgreSQL\n- **Authentication:** NextAuth.js\n- **Deployment:** Vercel\n\n## Database Schema\n\n### Users\n```sql\nCREATE TABLE users (\n    id SERIAL PRIMARY KEY,\n    name VARCHAR(100) NOT NULL,\n    email VARCHAR(150) UNIQUE NOT NULL,\n    password_hash TEXT NOT NULL,\n    created_at TIMESTAMP DEFAULT NOW(),\n    updated_at TIMESTAMP DEFAULT NOW()\n);\n```\n\n### Accounts\n```sql\nCREATE TABLE accounts (\n    id SERIAL PRIMARY KEY,\n    user_id INT REFERENCES users(id) ON DELETE CASCADE,\n    name VARCHAR(100) NOT NULL,\n    balance DECIMAL(15, 2) DEFAULT 0.00,\n    account_type VARCHAR(50),\n    amount_limit DECIMAL(15, 2) NOT NULL,\n    start_date DATE NOT NULL,\n    end_date DATE NOT NULL,\n    is_active BOOLEAN DEFAULT TRUE,\n    created_at TIMESTAMP DEFAULT NOW(),\n    updated_at TIMESTAMP DEFAULT NOW()\n);\n```\n\n### Categories\n```sql\nCREATE TABLE categories (\n    id SERIAL PRIMARY KEY,\n    user_id INT REFERENCES users(id) ON DELETE CASCADE,\n    name VARCHAR(100) NOT NULL,\n    parent_id INT REFERENCES categories(id) ON DELETE SET NULL,\n    user_id INT REFERENCES users(id) ON DELETE SET NULL,\n    created_at TIMESTAMP DEFAULT NOW(),\n    updated_at TIMESTAMP DEFAULT NOW()\n);\n```\n\n### Transactions\n```sql\nCREATE TABLE transactions (\n    id SERIAL PRIMARY KEY,\n    user_id INT REFERENCES users(id) ON DELETE CASCADE,\n    account_id INT REFERENCES accounts(id) ON DELETE CASCADE,\n    category_id INT REFERENCES categories(id) ON DELETE SET NULL,\n    amount DECIMAL(15, 2) NOT NULL,\n    transaction_date TIMESTAMP DEFAULT NOW(),\n    description TEXT,\n    created_at TIMESTAMP DEFAULT NOW(),\n    updated_at TIMESTAMP DEFAULT NOW()\n);\n```\n\n## Quick Start\n\n1. Clone the repository\n```bash\ngit clone [REPO_URL]\n```\n\n2. Install dependencies\n```bash\nnpm install\n```\n\n3. Configure environment variables\n```bash\ncp .env.example .env.local\n```\n\n4. Start the development server\n```bash\nnpm run dev\n```\n\n## Live Demo\n\nCheck out the live demo at [DEPLOYMENT_URL]\n\n## Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Acknowledgments\n\n- Thanks to Code of Africa GmbH for the project requirements\n- Built with [Next.js](https://nextjs.org/)\n- Hosted on [Vercel](https://vercel.com)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmukebo%2Fwallet-app","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenmukebo%2Fwallet-app","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenmukebo%2Fwallet-app/lists"}