Branch strategie
Hoofdbranch
| Branch | Beschrijving |
|---|---|
main | Productie — elke push triggert automatische deploy |
Werkwijze
feature/mijn-feature
↓
Pull Request naar main
↓
Code review
↓
Merge → automatische deploy
Naamconventies
| Type | Prefix | Voorbeeld |
|---|---|---|
| Nieuwe feature | feature/ | feature/tenant-export |
| Bugfix | fix/ | fix/callback-redirect |
| Documentatie | docs/ | docs/api-referentie |
| Infrastructuur | infra/ | infra/monitoring-stack |
Commit messages
Gebruik Conventional Commits:
feat: nieuwe functionaliteit beschrijven
fix: bug omschrijven
docs: documentatiewijziging
chore: onderhoud zonder functionele wijziging
Release tags
Maak release tags aan voor productie-milestones:
git tag -a v1.2.0 -m "Release 1.2.0 — tenant provisioning wizard"
git push origin v1.2.0