Dev/Prod Parity
Source: content/manual/02-12factor/chapters/05-dev-prod-parity.md
Purpose and scope
Ensure changes are tested in production-like environments early.
Outcomes
- Review apps for each PR.
- Data slices that preserve privacy and shape.
- Lower “works on my machine” incidents.
Signals of trouble
- Shared long-lived test environments.
- Manual environment setup.
- Surprise config differences on release.
Remediation steps
- Create ephemeral environments per PR; automate teardown.
- Provide seeded datasets and parity checks in CI.
- Track drift between envs and block merges on severe gaps.
Checklists and assets
playbooks/12factor-modernized/checklist.mdparity items.
References
- GitOps and environment orchestration docs.
