Hey there! 👋
This is Chillar, my little attempt to make tracking personal expenses easier because… honestly, I’m lazy 😅. I wanted a tool that keeps track of my eat-out habits, travel expenses, and subscriptions, all in one place, with a clean and minimalist interface.
It’s also my first real dabble in frontend development, so expect some pastel vibes and a Pinterest-ish layout 😎.
- Track visits to favorite restaurants.
- Pre-set meals with prices + custom meal option.
- Footer updates total amount spent live.
- Confirmation before submitting to backend.
- Add, edit, or remove recurring monthly subscriptions.
- Displays all services neatly in individual cards.
- Automatically included in monthly totals.
- Record travel details: mode, origin, destination, departure/arrival, and price.
- See all trips and calculate travel expenses.
- See your monthly total expenses combining eat-out, travel, and subscriptions.
- Dynamic tables + pie charts for easy visualization.
- Month selector to browse past months.
- Backend: Python + FastAPI + SQLite
- Frontend: React.js + Recharts for charts
- Styling: Custom CSS with pastel/minimalist design
- Backend
cd backend
pip install -r requirements.txt
python main.py- Frontend
cd frontend
npm install
npm start