Software பொதுவாக multiple environments — development, staging, மற்றும் production போன்ற — மூலம் deploy செய்யப்படுகிறது. இவை ஒவ்வொன்றும் code லிருந்து live users வரை உள்ள பாதையில் ஒரு நோக்கத்தை பணிபுரிகிறது. Code ஐ environments வழியாக promote செய்வது real users ஐ சென்றடைவதற்கு முன்பு issues ஐ பிடிக்கிறது.
Typical environments
DEVELOPMENT (dev) → where developers build and test (local or a shared dev environment);
unstable, frequent changes, experimentation
STAGING (test/QA/pre-prod) → a PRODUCTION-LIKE environment for final testing:
→ mirrors production (same config/infrastructure as closely as possible)
→ run integration/E2E tests, QA, UAT before releasing
→ catch issues in a safe, prod-like setting BEFORE real users see them
PRODUCTION (prod) → the LIVE environment serving real users:
→ stability is critical; changes are careful and monitored
