Skip to content

Latest commit

 

History

History
70 lines (65 loc) · 1.53 KB

README.md

File metadata and controls

70 lines (65 loc) · 1.53 KB

AI-Personal-Finance-Manager/ │ ├── backend/ │ ├── controllers/ │ ├── models/ │ ├── routes/ │ ├── services/ │ ├── app.js │ ├── config.js │ └── package.json │ ├── frontend/ │ ├── public/ │ ├── src/ │ │ ├── components/ │ │ ├── pages/ │ │ ├── App.js │ │ ├── index.js │ │ └── styles.css │ └── package.json │ ├── ml/ │ ├── models/ │ ├── notebooks/ │ ├── scripts/ │ └── requirements.txt │ ├── docker-compose.yml ├── .gitignore └── README.md

AI-Powered Personal Finance Manager

A personal finance management application powered by AI to help users analyze and predict their expenses and incomes.

Features

  • Track expenses and incomes
  • AI-based analysis and recommendations
  • Financial forecasting
  • Graphical reports
  • Financial alerts and reminders

Technologies Used

  • Frontend: React.js, Chart.js
  • Backend: Node.js, Express.js
  • Database: MongoDB
  • AI/ML: Python, TensorFlow/Keras
  • Authentication: JWT
  • Deployment: Docker, Kubernetes

Getting Started

Prerequisites

  • Node.js
  • MongoDB
  • Python

Installation

  1. Clone the repository:
    git clone https://github.com/yourusername/AI-Personal-Finance-Manager.git

cd AI-Personal-Finance-Manager cd backend npm install cd ../frontend npm install cd ../ml pip install -r requirements.txt cd backend npm start cd ../frontend npm start