Skip to content

Commit 88ec144

Browse files
committed
Optimize seo
1 parent 2918619 commit 88ec144

File tree

3 files changed

+55
-0
lines changed

3 files changed

+55
-0
lines changed
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
<script type="application/ld+json">
2+
{
3+
"@context": "https://schema.org",
4+
"@graph": [
5+
{
6+
"@type": "WebSite",
7+
"name": "{{ .Site.Title }}",
8+
"url": "{{ .Site.BaseURL }}",
9+
"description": "{{ .Site.Params.description }}"
10+
},
11+
{
12+
"@type": "Organization",
13+
"name": "MinimumCD",
14+
"url": "{{ .Site.BaseURL }}",
15+
"logo": "{{ .Site.BaseURL }}icons/logo.svg",
16+
"sameAs": [
17+
"https://github.com/Minimum-CD/cd-manifesto"
18+
]
19+
}
20+
]
21+
}
22+
</script>

layouts/robots.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
User-agent: *
2+
Allow: /
3+
4+
Sitemap: {{ .Site.BaseURL }}sitemap.xml
5+
# LLM discovery file
6+
# See https://llmstxt.org/
7+
Llms-txt: {{ .Site.BaseURL }}llms.txt

static/llms.txt

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Minimum Viable Continuous Delivery
2+
3+
> MinimumCD.org defines the minimum practices required to achieve continuous delivery. By adopting these essentials, organizations can improve software quality, enhance team environments, and boost development outcomes.
4+
5+
MinimumCD is a community-driven initiative establishing a baseline definition of continuous delivery (CD). It was created because consistent misunderstanding of CD practices prevents organizations from realizing the benefits described in research like "Accelerate" by Nicole Forsgren, Jez Humble, and Gene Kim.
6+
7+
## Core Practices
8+
9+
- [Continuous Integration](https://minimumcd.org/minimumcd/continuous-integration/): The activity of very frequently integrating work to the trunk of version control and verifying that it is releasable
10+
- [Trunk-based Development](https://minimumcd.org/minimumcd/trunk-based-development/): The branching pattern required to meet the definition of CI, preventing lost work and reducing merge conflicts
11+
- [Single Path to Production](https://minimumcd.org/minimumcd/single-path-to-production/): The application pipeline is the only way to deploy to any environment
12+
- [Deterministic Pipeline](https://minimumcd.org/minimumcd/deterministic/): The pipeline decides the releasability of changes and its verdict is definitive
13+
- [Definition of Deployable](https://minimumcd.org/minimumcd/deployable/): Artifacts created by the pipeline always meet the organization's definition of deployable
14+
- [Immutable Artifact](https://minimumcd.org/minimumcd/immutable/): No human changes after commit; the artifact is built once and deployed to all environments
15+
- [All Feature Work Stops When the Build Is Red](https://minimumcd.org/minimumcd/continuous-integration/all-feature-work-stops-when-the-build-is-red/): The team prioritizes fixing the build over new feature work
16+
- [Production-like Test Environment](https://minimumcd.org/minimumcd/production-like-test-environment/): Test environments must be representative of production
17+
- [Rollback on Demand](https://minimumcd.org/minimumcd/rollback/): The ability to restore a previous version of the application at any time
18+
- [Application Configuration](https://minimumcd.org/minimumcd/application-configuration/): Application configuration deploys with the artifact
19+
20+
## Supplementary Sections
21+
22+
- [Getting Started](https://minimumcd.org/journey/): Suggested improvement paths for teams beginning the CD journey
23+
- [FAQ](https://minimumcd.org/faq/): Frequently asked questions about MinimumCD, its purpose, and how to use it
24+
- [Recommendations](https://minimumcd.org/recommendations/): Recommended practices including small batch development and feature flags
25+
- [Resources and References](https://minimumcd.org/references/): Books, videos, and websites for going beyond the minimums
26+
- [Translations](https://minimumcd.org/translations/): Community translations in multiple languages

0 commit comments

Comments
 (0)