Quick Start Guide
Get started with our monorepo setup in 5 minutes.
1. Clone and Setup
# Clone the repository
git clone https://github.com/mindfiredigital/reponame.git
cd PivotHead
# Install pnpm if you haven't already
npm install -g pnpm
# Install dependencies
pnpm install
2. Development Workflow
# Start development environment
pnpm dev
# Build all packages
pnpm build
# Run tests
pnpm test
3. Making Changes
- Create a new branch:
git checkout -b feature/your-feature
Make your changes
Commit using conventional commits:
git commit -m "feat(core): add new feature"
# or
git commit -m "fix(react): fix bug"
- Push and create a PR:
git push origin feature/your-feature
4. Publishing
The release process is automated through GitHub Actions. When your PR is merged:
- A changeset will be automatically generated
- A new version will be created
- Packages will be published to npm
Need Help?
- Check the full Monorepo Setup Guide
- Open an issue on GitHub
- Contact the team