A fun, LLM-powered workout app for the new year. Set your fitness goals and let AI generate personalized workout routines to keep you moving.
Dreamed up by Seth Cronin. Fully vibe coded by Claude Code.
- AI-generated workout routines tailored to your goals
- Cross-platform: iOS, Android, and Web
- Dark mode interface
- Haptic feedback and audio cues
- Progress tracking
# Clone the repository
git clone https://github.com/smcronin/circuit.git
cd circuit
# Install dependencies
npm installThe quickest way to run the app during development:
# Start the Expo development server
npm startThen:
- iOS: Scan the QR code with your iPhone camera or Expo Go app
- Android: Scan the QR code with the Expo Go app
- Web: Press
wto open in your browser
# iOS Simulator
npm run ios
# Android Emulator
npm run android
# Web Browser
npm run web
# Clear cache and restart
npm run resetJust run npm start and scan the QR code with Expo Go on your device. No build required.
Build native binaries using Expo Application Services:
# Install EAS CLI globally
npm install -g eas-cli
# Log in to your Expo account
eas login
# Build for development (includes dev client)
eas build --profile development --platform ios
eas build --profile development --platform android
# Build for internal testing
eas build --profile preview --platform ios
eas build --profile preview --platform android
# Build for production (App Store / Play Store)
eas build --profile production --platform ios
eas build --profile production --platform android# Submit to App Store
eas submit --platform ios
# Submit to Play Store
eas submit --platform androidDeploy the web version to Vercel:
# Build the static web export
npx expo export --platform web
# Install Vercel CLI
npm install -g vercel
# Deploy (from project root)
vercel
# Deploy to production
vercel --prodOr connect your GitHub repo to Vercel for automatic deployments:
- Push your code to GitHub
- Import the project at vercel.com/new
- Set the build command to:
npx expo export --platform web - Set the output directory to:
dist - Deploy!
# Build the static web export
npx expo export --platform web
# Deploy dist folder to Netlify
# Either drag & drop the dist folder at netlify.com
# Or use Netlify CLI:
npm install -g netlify-cli
netlify deploy --dir=dist --prodFor AI features, you may need to configure API keys. Create a .env file in the project root:
# Add your API keys here
OPENAI_API_KEY=your_key_here- Expo - React Native framework
- React Native - Cross-platform mobile development
- Expo Router - File-based routing
- Zustand - State management
- React Native Reanimated - Animations
This project is licensed under the PolyForm Noncommercial License 1.0.0.
- Free for personal, educational, research, and non-commercial use
- Charitable organizations, educational institutions, and government entities may use freely
- Commercial use requires a separate license
See the LICENSE file for details. For commercial licensing inquiries, contact: sethcronin@gmail.com
Built with Claude Code