-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from MinBZK/adr/documentation
An ADR to propose using ADRs
- Loading branch information
Showing
4 changed files
with
52 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
--- | ||
title: 0001 ADRs | ||
adr: | ||
author: Anne Schuth | ||
created: 16-Feb-2024 | ||
status: proposed | ||
--- | ||
|
||
## Context | ||
|
||
In modern software development practices, the use of Architecture Decision Records (ADRs) has become increasingly | ||
common. ADRs are documents that capture important architectural decisions made during the development process. These | ||
decisions play a crucial role in guiding the development team and ensuring consistency and coherence in the architecture | ||
of the software system. | ||
|
||
## Assumptions | ||
|
||
1. ADRs provide a structured way to document and communicate architectural decisions. | ||
2. Publishing ADRs publicly fosters transparency and facilitates collaboration among team members and stakeholders. | ||
3. ADRs help in onboarding new team members by providing insights into past decisions and their rationale. | ||
|
||
## Decision | ||
|
||
We will utilize ADRs in our team to document and communicate architectural decisions effectively. Furthermore, we | ||
will publish these ADRs publicly to promote transparency and facilitate collaboration. | ||
|
||
|
||
## Template | ||
Use the template below to add an ADR: | ||
|
||
```yaml | ||
--- | ||
title: 0004 Title | ||
adr: | ||
author: Jean-Loup Monnier | ||
created: 01-Aug-2023 | ||
status: draft | proposed | rejected | accepted | superseded | ||
superseded_by: 0001-test | ||
extends: | ||
- 0001-first | ||
- 0002-second | ||
--- | ||
``` |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,8 @@ | ||
mkdocs==1.5.3 | ||
Jinja2>=2.11.1 | ||
mkdocs-git-revision-date-localized-plugin==1.2.2 | ||
mkdocs-glightbox==0.3.6 | ||
mkdocs-material==9.5.4 | ||
mkdocs-material-adr==1.1.0 | ||
mkdocs-material-extensions==1.3.1 | ||
mkdocs-material==9.5.4 | ||
mkdocs==1.5.3 | ||
pymdown-extensions==10.7 | ||
Jinja2>=2.11.1 |