{"id":49103410,"url":"https://github.com/efeecllk/personal-finance-tracking-system","last_synced_at":"2026-04-21T00:12:30.534Z","repository":{"id":278244531,"uuid":"934992393","full_name":"efeecllk/personal-finance-tracking-system","owner":"efeecllk","description":" Personal Finance Tracking System","archived":false,"fork":false,"pushed_at":"2025-02-18T18:29:24.000Z","size":191,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-04T15:58:06.863Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/efeecllk.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}},"created_at":"2025-02-18T18:21:41.000Z","updated_at":"2025-02-18T18:29:27.000Z","dependencies_parsed_at":"2025-02-18T19:32:38.555Z","dependency_job_id":"77f2020d-2ea2-427e-8066-e590775e20ae","html_url":"https://github.com/efeecllk/personal-finance-tracking-system","commit_stats":null,"previous_names":["efeecllk/personal-finance-tracking-system"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/efeecllk/personal-finance-tracking-system","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeecllk%2Fpersonal-finance-tracking-system","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeecllk%2Fpersonal-finance-tracking-system/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeecllk%2Fpersonal-finance-tracking-system/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeecllk%2Fpersonal-finance-tracking-system/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/efeecllk","download_url":"https://codeload.github.com/efeecllk/personal-finance-tracking-system/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/efeecllk%2Fpersonal-finance-tracking-system/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32071073,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-20T21:26:33.338Z","status":"ssl_error","status_checked_at":"2026-04-20T21:26:22.081Z","response_time":94,"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-21T00:12:29.852Z","updated_at":"2026-04-21T00:12:30.528Z","avatar_url":"https://github.com/efeecllk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 💰 Personal Finance Tracker\n\n## 📌 Project Overview\nThis project is a **Personal Finance Tracker** built as a learning experience to understand **database systems, backend development, and frontend integration**. The main goal is to explore how data is stored, retrieved, and manipulated using a relational database while creating a functional web application.\n\n## 🚀 Features\n- User can **add income and expenses**\n- View a **transaction list** with all entries\n- **Delete transactions** when needed (currently experiencing errors)\n- Total budget is **automatically calculated**\n- Uses a **REST API** for communication between frontend and backend\n\n## 🛠 Tech Stack\n### Backend:\n- **FastAPI** (Python) - For building the API\n- **SQLite** - Database system for storing financial data\n- **SQLAlchemy** - ORM for database interactions\n- **Uvicorn** - ASGI server to run the backend\n\n### Frontend:\n- **React.js** - Frontend framework for building UI\n- **Bootstrap** - For responsive styling\n- **Axios** - HTTP client for API requests\n\n## 📂 Project Structure\n```\nfinance-tracker/\n│── backend/\n│   ├── main.py  # API's main file\n│   ├── models.py  # Database models\n│   ├── database.py  # Database connection setup\n│   ├── crud.py  # CRUD operations\n│   ├── schemas.py  # Pydantic models\n│── frontend/\n│   ├── src/\n│   │   ├── components/\n│   │   │   ├── AddTransaction.js  # Add income/expenses\n│   │   │   ├── TransactionList.js  # Display transactions\n│   │   ├── App.js  # Main React application\n│   │   ├── config.js  # API base URL\n│   ├── public/\n│   ├── package.json  # React dependencies\n│── README.md\n```\n\n## 🔧 Installation \u0026 Setup\n### Backend Setup\n1. Install dependencies:\n    ```bash\n    pip install fastapi uvicorn sqlalchemy sqlite3\n    ```\n2. Run the backend server:\n    ```bash\n    uvicorn main:app --reload\n    ```\n3. Open `http://127.0.0.1:8000/docs` to test API endpoints.\n\n### Frontend Setup\n1. Navigate to the frontend folder:\n    ```bash\n    cd frontend\n    ```\n2. Install dependencies:\n    ```bash\n    npm install\n    ```\n3. Start the React app:\n    ```bash\n    npm start\n    ```\n\n## 🌍 API Endpoints\n| Method | Endpoint | Description |\n|--------|---------|-------------|\n| `GET` | `/transactions/` | Fetch all transactions |\n| `POST` | `/transactions/` | Add a new transaction |\n| `DELETE` | `/transactions/{id}` | Delete a transaction (currently experiencing errors) |\n\n## 🏗 Future Improvements\n- Fix **delete transaction error**\n\n## 📜 License\nThis project is licensed under the **MIT License**. Feel free to modify and enhance it for personal use!\n\n---\n🚀 **Happy Coding!**","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fefeecllk%2Fpersonal-finance-tracking-system","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fefeecllk%2Fpersonal-finance-tracking-system","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fefeecllk%2Fpersonal-finance-tracking-system/lists"}