Skip to content

Latest commit

 

History

History
44 lines (33 loc) · 1.06 KB

File metadata and controls

44 lines (33 loc) · 1.06 KB

Claude Code Guidelines for openadapt-web

Repository Overview

This is the marketing website for OpenAdapt at https://openadapt.ai/

Built with Next.js and deployed via Vercel.

Important Rules

Always Use Pull Requests

NEVER push directly to the main branch. Always create a feature branch and submit a PR, even for small changes.

# Create a new branch
git checkout -b feature/my-change

# Make changes and commit
git add .
git commit -m "Description of change"

# Push branch and create PR
git push -u origin feature/my-change
gh pr create --title "Title" --body "Description"

This allows:

  • Changes to be reviewed before deployment
  • Vercel preview deployments for testing
  • Proper CI checks to run

Development

npm install
npm run dev

Key Files

  • utils/pypiStats.js - PyPI download statistics fetching
  • app/ - Next.js app router pages
  • components/ - React components

Related Repositories