From 6708a5e3547d9ca6f6bc8ceb81542007d840449c Mon Sep 17 00:00:00 2001 From: KC Ng Date: Sat, 28 Sep 2024 19:42:14 +0900 Subject: [PATCH 1/2] fix: Correct the spelling error for CI term --- src/content/terms/Continuous_Integration_(CI).json | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/content/terms/Continuous_Integration_(CI).json b/src/content/terms/Continuous_Integration_(CI).json index 00e1864d..19bb68e8 100644 --- a/src/content/terms/Continuous_Integration_(CI).json +++ b/src/content/terms/Continuous_Integration_(CI).json @@ -4,10 +4,12 @@ "categories": ["DevOps", "Automation"], "author": "Buzzpy", "description": { - "title": "Contrinuous Integration (CI)", - "texts": ["Continuous Integration (CI) is a practice where code changes are automatically tested and integrated into a shared repository multiple times a day. It aims to detect and fix errors early in the development process.", - "CI helps improve software quality and reduce integration issues by ensuring that code changes are tested and validated frequently."], + "title": "Continuous Integration (CI)", + "texts": [ + "Continuous Integration (CI) is a practice where code changes are automatically tested and integrated into a shared repository multiple times a day. It aims to detect and fix errors early in the development process.", + "CI helps improve software quality and reduce integration issues by ensuring that code changes are tested and validated frequently." + ], "image": "https://www.pagerduty.com/wp-content/uploads/2020/01/continuous-integration-2.png", "references": ["https://aws.amazon.com/devops/continuous-integration/"] } -} \ No newline at end of file +} From 083cdc9d1ab7d677bdcef5399c471fdcf939769c Mon Sep 17 00:00:00 2001 From: KC Ng Date: Sat, 28 Sep 2024 19:42:30 +0900 Subject: [PATCH 2/2] feature: add new term - CI/CD --- src/content/terms/CICD.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/content/terms/CICD.json diff --git a/src/content/terms/CICD.json b/src/content/terms/CICD.json new file mode 100644 index 00000000..414cbe63 --- /dev/null +++ b/src/content/terms/CICD.json @@ -0,0 +1,15 @@ +{ + "title": "Continue Integration / Continuous Delivery (CI/CD)", + "subtext": "Continuous integration and continuous delivery", + "categories": ["DevOps", "Automation"], + "author": "Ng Kwong Cheong (KC900201)", + "description": { + "title": "Continue Integration / Continuous Delivery (CI/CD)", + "texts": [ + "CI/CD, or continuous integration and continuous delivery, is a software development practice that automates the process of integrating and delivering code.", + "CI/CD is a key part of DevOps, a methodology that encourages collaboration between development and operations teams." + ], + "image": "https://testrigor.com/wp-content/uploads/2023/11/What-is-the-CICD-Pipeline.png", + "references": ["https://about.gitlab.com/topics/ci-cd/"] + } +}