From 94839bc851b08d23524710309b8c05b2cfdeded5 Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 26 Dec 2024 01:57:43 +0000 Subject: [PATCH] Add daily email for 2024-12-23 How many environments do you need? --- source/_daily_emails/2024-12-23.md | 35 ++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 source/_daily_emails/2024-12-23.md diff --git a/source/_daily_emails/2024-12-23.md b/source/_daily_emails/2024-12-23.md new file mode 100644 index 00000000..61940615 --- /dev/null +++ b/source/_daily_emails/2024-12-23.md @@ -0,0 +1,35 @@ +--- +title: How many environments do you need? +date: 2024-12-23 +permalink: daily/2024/12/23/how-many-environments-do-you-need +tags: + - software-development + - git + - deployments +cta: ~ +snippet: | + How many environments do you have for your software application? How many do you need? +--- + +How many environments do you have for your software application, other than live/production? + +Testing? +Staging? +UAT? +Pilot? +QA? +Dev? + +What do you use each one for? + +What if you only had one pre-prod environment and production? + +What if you only had production? + +What if you only had one branch in your code repository? + +No more merge conflicts. + +No more confusion about which environment to test a change on. + +How much simpler would that make things?