Tagged “ci-cd”

5 posts found.

Jul 22, 2026· 16 min read ·5 views

A step-by-step guide to the CI/CD journey: understand each component's role, trace a commit from development to production, and see a real Jenkins pipeline in action

Part 1 — The Roles: Who Does What People often blur these three together. They are separate concerns: | Piece | What it actually is | Responsibility | | | | | | CI/CD | A practice…

Jul 22, 2026· 3 min read ·12 views

Ensuring the Same Configuration Across Development, QA, and Production

One of the biggest deployment challenges is making sure the application behaves consistently across all environments while allowing environment-specific settings (like connection strings and API keys).

1. Keep Configuration Outside the Code (12 Factor App) Never hardcode environment specific values. Bad Good Store values in configuration files, environment variables, or a secret…