Skip to content

Development Workflow

This guide outlines the recommended development workflow to help you build features efficiently while maintaining code quality and consistency.

Daily Development Flow

bash
# Start everything
pnpm dev

# Run tests (yes, we have tests!)
pnpm test

# Lint your code (keep it clean)
pnpm lint
bash
# Start everything
yarn dev

# Run tests (yes, we have tests!)
yarn test

# Lint your code (keep it clean)
yarn lint
bash
# Start everything
npm start dev

# Run tests (yes, we have tests!)
npm start test

# Lint your code (keep it clean)
npm start lint

Released under the MIT License.