Skip to content

Commit cc46f7f

Browse files
committedJul 14, 2022
NEXT-20194 - Added guideline for writing ADRs
1 parent f830a80 commit cc46f7f

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed
 

‎coding-guidelines/core/adr.md

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# ADR
2+
3+
This guideline describes what we expect from our ADRs and how you can write some.
4+
5+
Joel Parker Henderson has done a lot of work on this topic, collected excellent ideas, tips, templates, and examples, and published them on [github](https://github.com/joelparkerhenderson/architecture-decision-record).
6+
7+
The ADRs examples published there are good.
8+
9+
Expectations for an ADR:
10+
- Write a complete description of the requirements
11+
- List all technical domains that are affected by the ADR
12+
- List all affected logic in the system that are affected
13+
- Write some pseudo code for your new logic to visualize what you want to realize
14+
- Define all public APIs that are to be created or changed with your new logic
15+
- Define how developers can extend the new APIs and logic and what possible business cases you see
16+
- Define the reason why you made the decision. It often helps to understand why you made a specific architectural change in the future.
17+
- Define all consequences of the decision and how they impact a developer who has used the code/product.
18+
19+
Everyone takes a different approach to create ADRs and meeting the expectations above. One possible approach is the following:
20+
21+
- Create a list of domains you want to touch (Store-API, admin process, indexing, ...)
22+
- Create a headline for each domain
23+
- Describe the domains. After each headline, write in 2 sentences why this domain is relevant for this ADR
24+
- Describe the "problems" of each domain... write in each domain which logic has to be touched... not how you want to change them, only why
25+
- e.G. indexing: "We have to extend the product indexing process because calculating the new product data is too expensive, and we want to calculate the values in a background job."
26+
- Describe the "solution" of each domain... write in each domain how you want to extend the above logic to solve your "problems."
27+
- Add a new section about extendability and write down how developers should be able to extend your system and which business cases you see
28+
- Last, add some pseudocode at the end to visualize your solutions and ideas.
29+

0 commit comments

Comments
 (0)