Thanks for your interest in contributing! 🎉
feature/* ──→ develop ──→ master
│ │
staging production
develop— Default branch, all PRs target heremaster— Production releases onlyfeature/*— Feature branches off develop
- Fork the repo
- Create a feature branch from
develop:git checkout develop git pull origin develop git checkout -b feature/my-feature
- Make your changes
- Run tests:
pytest tests/ -v - Run linting:
ruff check src/ - Push and create a PR to
develop
- Python 3.11+
- Type hints required
- Ruff for linting
- 100 char line limit
Use conventional commits:
feat:New featurefix:Bug fixdocs:Documentationrefactor:Code refactortest:Testschore:Maintenance
- PRs merged to
developdeploy to staging - When ready, merge
develop→master - Master deploys to production automatically