Goal
Move fast without breaking production, security, or trust.
This document defines mandatory engineering discipline, not suggestions.
1. Core Principles
- Production safety over speed
- Predictable releases over chaos
- Clean, maintainable code over hacks
- Automation over manual processes
- Accountability over assumptions
2. Source Control Rules (MANDATORY)
No Direct Push to main
All changes must go through Pull Requests.
feature → dev → main → production
PR Requirements
Every PR must include:
- Clear description of changes
- Screenshots or test proof (if UI)
- Test updates (if logic changes)