https://github.com/zkfriendly/archive
This is a personal project that I use to track my own expenses. It's designed according to my specific needs and workflow. (99% AI Generated)
https://github.com/zkfriendly/archive
Last synced: 3 months ago
JSON representation
This is a personal project that I use to track my own expenses. It's designed according to my specific needs and workflow. (99% AI Generated)
- Host: GitHub
- URL: https://github.com/zkfriendly/archive
- Owner: zkfriendly
- Created: 2025-03-08T20:09:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-08T20:52:38.000Z (over 1 year ago)
- Last Synced: 2025-03-08T21:31:27.446Z (over 1 year ago)
- Language: TypeScript
- Homepage:
- Size: 2.97 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Expense Tracker
A modern expense tracking application that uses OCR to automatically extract information from receipts and provides natural language querying capabilities.
> **Note:** This is a personal project that I use to track my own expenses. It's designed according to my specific needs and workflow.
## Features
- 📸 Receipt scanning with automatic item and price detection
- 🤖 Automatic category detection and management
- 💬 Natural language querying for expenses
- 📱 Modern web interface
- 🔒 Secure data storage
## Tech Stack
- **Frontend**: React, TypeScript, Vite
- **Backend**: Bun, TypeScript, Prisma
- **Database**: PostgreSQL
- **Cache**: Redis
- **AI/ML**: Anthropic Claude API for natural language processing
- **OCR**: Tesseract.js for receipt scanning
## Prerequisites
- Bun (latest version)
- Docker and Docker Compose
- Anthropic API key
## Getting Started
1. Clone the repository
2. Install dependencies:
```bash
bun install
```
3. Set up environment variables:
```bash
cp apps/backend/.env.example apps/backend/.env
cp apps/frontend/.env.example apps/frontend/.env
```
4. Start development services:
```bash
docker-compose up -d
```
5. Start the development servers:
```bash
bun dev
```
## Project Structure
```
.
├── apps/
│ ├── frontend/ # React frontend application
│ └── backend/ # Bun backend API
├── packages/
│ └── shared/ # Shared types and utilities
└── docker-compose.yml
```
## License
MIT