Skip to content

Latest commit

 

History

History
36 lines (28 loc) · 1.1 KB

File metadata and controls

36 lines (28 loc) · 1.1 KB

Contributing

Thank you for considering contributing to this project! Please follow these guidelines to help us maintain a high-quality, welcoming, and consistent open-source ecosystem.

Development setup

  • Follow the instructions in the README to set up your environment.
  • Use the provided .env.example as a template for environment variables.

Branch naming

  • Use feature/<name> for new features.
  • Use fix/<name> for bug fixes.
  • Use release/<version> for release preparation.

Commit conventions

  • Use Conventional Commits:
    • feat: new features
    • fix: bug fixes
    • docs: documentation changes
    • refactor: code refactoring
    • test: adding or updating tests
    • build/ci/chore: build or CI changes

Pull request checklist

  • Ensure all tests pass.
  • Lint your code.
  • Update documentation if needed.
  • Reference related issues.

Testing requirements

  • Add or update tests for new/changed code.

Documentation requirements

  • Update README and docs for any user-facing changes.

Review process

  • At least one maintainer must approve before merging.