Initial commit: PriceGhost price tracking application

Full-stack application for tracking product prices:
- Backend: Node.js + Express + TypeScript
- Frontend: React + Vite + TypeScript
- Database: PostgreSQL
- Price scraping with Cheerio
- JWT authentication
- Background price checking with node-cron
- Price history charts with Recharts
- Docker support with docker-compose

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
clucraft 2026-01-20 13:58:13 -05:00
commit 10660e5626
44 changed files with 3662 additions and 0 deletions

9
backend/.env.example Normal file
View file

@ -0,0 +1,9 @@
# Database
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/priceghost
# JWT
JWT_SECRET=your-super-secret-jwt-key-change-in-production
# Server
PORT=3001
NODE_ENV=development