This repository is a minimal template integrating a React + TypeScript frontend (Vite) with a Python Flask backend.
Quick start
- Start the backend (from repository root):
cd backend
python -m venv venv # optional but recommended
venv\\Scripts\\Activate # on Windows
pip install -r requirements.txt
python app.py- Start the frontend (separate terminal):
cd frontend
npm install
npm run devFrontend runs on http://localhost:3000 and backend on http://localhost:5000 by default.
Files of interest: