{"id":48908715,"url":"https://github.com/aojdevstudio/home-dashboard","last_synced_at":"2026-04-16T22:03:57.645Z","repository":{"id":280084263,"uuid":"940939469","full_name":"AojdevStudio/home-dashboard","owner":"AojdevStudio","description":null,"archived":false,"fork":false,"pushed_at":"2025-03-01T05:20:53.000Z","size":1599,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-01T06:20:41.545Z","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/AojdevStudio.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}},"created_at":"2025-03-01T05:11:30.000Z","updated_at":"2025-03-01T05:20:56.000Z","dependencies_parsed_at":"2025-03-01T06:32:16.170Z","dependency_job_id":null,"html_url":"https://github.com/AojdevStudio/home-dashboard","commit_stats":null,"previous_names":["aojdevstudio/home-dashboard"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AojdevStudio/home-dashboard","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AojdevStudio%2Fhome-dashboard","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AojdevStudio%2Fhome-dashboard/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AojdevStudio%2Fhome-dashboard/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AojdevStudio%2Fhome-dashboard/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AojdevStudio","download_url":"https://codeload.github.com/AojdevStudio/home-dashboard/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AojdevStudio%2Fhome-dashboard/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31905896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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-16T22:03:40.056Z","updated_at":"2026-04-16T22:03:57.629Z","avatar_url":"https://github.com/AojdevStudio.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Home Dashboard\n\n![Home Dashboard](public/github.png)\n\nA modern, AI-powered financial dashboard that helps users take control of their financial future through intelligent budgeting, savings tracking, and automated investments.\n\n## 🌟 Features\n\n- **Financial Overview**: Track your account balance, monthly income, and expenses at a glance\n- **Transaction Tracking**: Monitor and categorize your recent financial transactions\n- **Spending Analysis**: Visualize your spending patterns by category\n- **Savings Goals**: Set and track progress towards your savings targets\n- **AI Financial Assistant**: Get personalized financial advice and insights\n- **Responsive Design**: Beautiful UI that works on desktop and mobile devices\n\n## 🚀 Technologies\n\n- **Frontend**: Next.js 15, React 19, TailwindCSS 4\n- **State Management**: Zustand\n- **Data Visualization**: Recharts, Chart.js\n- **API Integration**: \n  - Plaid (banking connections)\n  - Alpaca (investment API)\n  - OpenAI (AI assistant)\n- **Backend \u0026 Database**: Supabase, PostgreSQL\n- **Testing**: Jest, Cypress, Playwright\n\n## 📋 Prerequisites\n\n- Node.js 18.0 or later\n- npm or yarn package manager\n- Supabase account (for database)\n- API keys for Plaid, Alpaca, and OpenAI (for full functionality)\n\n## 🔧 Installation\n\n1. Clone the repository:\n   ```bash\n   git clone https://github.com/AojdevStudio/home-dashboard.git\n   cd home-dashboard\n   ```\n\n2. Install dependencies:\n   ```bash\n   npm install\n   # or\n   yarn install\n   ```\n\n3. Set up environment variables:\n   - Copy `.env.local.example` to `.env.local`\n   - Fill in your API keys and configuration values\n\n4. Run the development server:\n   ```bash\n   npm run dev\n   # or\n   yarn dev\n   ```\n\n5. Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.\n\n## 🏗️ Project Structure\n\n```\nhome-dashboard/\n├── public/             # Static assets\n├── src/\n│   ├── app/            # Next.js App Router\n│   │   ├── dashboard/  # Dashboard page\n│   │   ├── login/      # Authentication pages\n│   │   ├── signup/     # User registration\n│   │   └── page.tsx    # Landing page\n│   ├── components/     # Reusable UI components\n│   ├── lib/            # Utility functions and API clients\n│   └── types/          # TypeScript type definitions\n├── .env.local.example  # Example environment variables\n└── package.json        # Project dependencies\n```\n\n## 🧪 Testing\n\nRun the test suite:\n\n```bash\n# Unit and integration tests\nnpm run test\n\n# End-to-end tests with Cypress\nnpm run cypress\n\n# End-to-end tests with Playwright\nnpm run playwright\n```\n\n## 🚢 Deployment\n\nThe easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template\u0026filter=next.js\u0026utm_source=create-next-app\u0026utm_campaign=create-next-app-readme) from the creators of Next.js.\n\nCheck out the [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.\n\n## 🔒 Security\n\nThis application handles sensitive financial data. Always:\n- Use HTTPS in production\n- Never commit API keys or secrets to the repository\n- Follow best practices for authentication and data protection\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the LICENSE file for details.\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit a Pull Request.\n\n1. Fork the repository\n2. Create your 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## 📞 Contact\n\nAojdevStudio - [GitHub](https://github.com/AojdevStudio)\n\nProject Link: [https://github.com/AojdevStudio/home-dashboard](https://github.com/AojdevStudio/home-dashboard)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faojdevstudio%2Fhome-dashboard","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faojdevstudio%2Fhome-dashboard","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faojdevstudio%2Fhome-dashboard/lists"}