Skip to content

vikasyadav01234/personal-finance-visualizer

Repository files navigation

Personal Finance Tracker

A modern web application for tracking personal finances, built with Next.js, MongoDB, and Tailwind CSS.

Personal Finance Tracker

Features

  • πŸ’° Track income and expenses
  • πŸ“Š Visual data representation with charts
  • πŸ“± Responsive design that works on all devices
  • πŸ—ƒοΈ Category-based transaction organization
  • πŸ“ˆ Monthly financial overview
  • πŸ” Transaction history with search and filter
  • πŸ’Ύ Persistent data storage with MongoDB

Tech Stack

Getting Started

Prerequisites

  • Node.js 14.0 or later
  • MongoDB Atlas account or local MongoDB installation
  • Git

Installation

  1. Clone the repository:
git clone https://github.com/vikasyadav01234/personal-finance-tracker.git
cd personal-finance-tracker
  1. Install dependencies:
npm install
  1. Create a .env file in the root directory:
MONGODB_URI=your_mongodb_connection_string
  1. Run the development server:
npm run dev
  1. Open http://localhost:3000 in your browser

Environment Variables

  • MONGODB_URI: Your MongoDB connection string

Project Structure

personal-finance-tracker/
β”œβ”€β”€ components/           # React components
β”‚   β”œβ”€β”€ Dashboard.js     # Dashboard with charts
β”‚   β”œβ”€β”€ TransactionForm.js # Form for adding/editing transactions
β”‚   └── TransactionList.js # List of transactions
β”œβ”€β”€ lib/
β”‚   └── mongodb.js       # MongoDB connection utility
β”œβ”€β”€ models/
β”‚   └── Transaction.js   # Mongoose model for transactions
β”œβ”€β”€ pages/
β”‚   β”œβ”€β”€ api/            # API routes
β”‚   β”‚   └── transactions/
β”‚   β”‚       β”œβ”€β”€ index.js
β”‚   β”‚       └── [id].js
β”‚   β”œβ”€β”€ _app.js
β”‚   └── index.js        # Main page
β”œβ”€β”€ public/             # Static files
└── styles/            # Global styles

API Routes

Transactions

  • GET /api/transactions - Get all transactions
  • POST /api/transactions - Create a new transaction
  • PUT /api/transactions/:id - Update a transaction
  • DELETE /api/transactions/:id - Delete a transaction

Deployment

This project is deployed on Vercel. To deploy your own instance:

  1. Push your code to GitHub
  2. Import your repository to Vercel
  3. Add your environment variables
  4. Deploy!

Contributing

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details

Acknowledgments

Author

Vikas Yadav

Support

If you found this project helpful, please give it a ⭐️!


Created by Vikas Yadav - 2024