Devops terms
Shipping fast, breaking nothing, sleeping soundly
The gap between writing code and running it reliably in production is where DevOps lives. CI/CD pipelines, infrastructure as code, containerisation, deployment strategies, monitoring, and incident response — this category covers the culture, tools, and practices that let teams ship with confidence and recover quickly when things go wrong.
GitFlow uses long-lived feature and release branches; trunk-based development merges to main frequently — the latter scales better with CI/CD.
2mo ago
devops intermediate
Automating PHP CI/CD with GitHub Actions — running tests, static analysis, code style checks, and deployments on every push and pull request.
2mo ago
devops intermediate
Using Git as the single source of truth for infrastructure and application state — changes are made via pull requests, and a reconciliation loop automatically applies them to the target environment.
2mo ago
devops advanced