A workout timer app built entirely with AI.
tempo/
├── frontend/ # React frontend application
├── backend/ # Express backend server
└── package.json # Root scripts for running the project
# Install dependencies for both frontend and backend
npm run install:all
# Run frontend dev server (port 5173)
npm run dev
# Run backend server (port 3001)
npm run server:dev# Build frontend
npm run build
# Start production server
npm run serverFull documentation to be added.