A modern web application for tracking personal finances, built with Next.js, MongoDB, and Tailwind CSS.
- π° 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
-
Frontend:
- Next.js - React framework for production
- Tailwind CSS - Utility-first CSS framework
- Recharts - Composable charting library
-
Backend:
-
Deployment:
- Vercel - Platform for frontend deployment
- MongoDB Atlas - Cloud database service
- Node.js 14.0 or later
- MongoDB Atlas account or local MongoDB installation
- Git
- Clone the repository:
git clone https://github.com/vikasyadav01234/personal-finance-tracker.git
cd personal-finance-tracker
- Install dependencies:
npm install
- Create a
.env
file in the root directory:
MONGODB_URI=your_mongodb_connection_string
- Run the development server:
npm run dev
- Open http://localhost:3000 in your browser
MONGODB_URI
: Your MongoDB connection string
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
GET /api/transactions
- Get all transactionsPOST /api/transactions
- Create a new transactionPUT /api/transactions/:id
- Update a transactionDELETE /api/transactions/:id
- Delete a transaction
This project is deployed on Vercel. To deploy your own instance:
- Push your code to GitHub
- Import your repository to Vercel
- Add your environment variables
- Deploy!
- Fork the repository
- Create your feature branch (
git checkout -b feature/AmazingFeature
) - Commit your changes (
git commit -m 'Add some AmazingFeature'
) - Push to the branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
This project is licensed under the MIT License - see the LICENSE file for details
Vikas Yadav
- GitHub: @vikasyadav01234
If you found this project helpful, please give it a βοΈ!
Created by Vikas Yadav - 2024