*** This is an abstract of what this repo is trying to help our dev team achieve ***
flowchart TD
subgraph Local["Local machine"]
A["feature/xyz"]
end
subgraph Remote["Remote GitHub"]
B["feature/xyz"]
C["main<br/>integration / work branch"]
D["prod<br/>final release branch"]
end
E["Server watches this<br/>→ builds & deploys"]
A -->|push| B
B -->|Pull Request + Review + Tests| C
C -->|Pull Request<br/>or auto-promote| D
D --> E
style A fill:#e1f5fe,stroke:#01579b,stroke-width:2px
style B fill:#e1f5fe,stroke:#01579b,stroke-width:2px
style C fill:#fff3e0,stroke:#e65100,stroke-width:2px
style D fill:#e8f5e9,stroke:#1b5e20,stroke-width:2px
style E fill:#fce4ec,stroke:#880e4f,stroke-width:2px