Development Workflow
Development Workflow
This page summarizes how we recommend working with the monorepo. For the full set of rules see .cursor/rules/development/workflow.mdc
.
Recommended pnpm commands
pnpm install
– install dependencies across the monorepopnpm dev
– start all apps in development modepnpm test
– run the test suitepnpm lint:biome
– lint all packagespnpm build
– build everything with Turborepo
Branching strategy
main
holds production-ready codedevelop
aggregates completed workfeature/<name>
branches offdevelop
fix/<name>
for bug fixesrelease/<version>
for release preparation
Commit conventions
- Use Conventional Commits
- Prefix commits with
feat:
,fix:
,docs:
and other standard types - Keep messages concise and in the imperative mood