Thank you for your interest in contributing to HighFlow!
This project follows Git Flow.
main: Production code.develop: Main development branch. All feature branches should be merged here.
Please read docs/GIT_FLOW.md for detailed instructions on the branching model and workflow.
- Clone the repository.
- Switch to the
developbranch:git checkout develop
- Install dependencies:
pnpm install
- Run development server:
pnpm dev:all
- Create a feature branch from
develop:git checkout -b feature/your-feature-name develop
- Commit your changes.
- Push to origin and create a Pull Request targeting
develop.
- We use Prettier and ESLint.
- Please run
pnpm lintbefore submitting.