File: adr.md

package info (click to toggle)
python-yamlfix 1.17.0-4
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,892 kB
  • sloc: python: 1,757; makefile: 171; sh: 13
file content (24 lines) | stat: -rw-r--r-- 731 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[ADR](https://lyz-code.github.io/blue-book/adr/) are short text documents that
captures an important architectural decision made along with its context and
consequences.

```mermaid
graph TD
    001[001: High level analysis]
    002[002: Initial Program design]

    001 -- Extended --> 002

    click 001 "https://lyz-code.github.io/yamlfix/adr/001-high_level_problem_analysis" _blank
    click 002 "https://lyz-code.github.io/yamlfix/adr/002-initial_program_design" _blank

    001:::draft
    002:::draft

    classDef draft fill:#CDBFEA;
    classDef proposed fill:#B1CCE8;
    classDef accepted fill:#B1E8BA;
    classDef rejected fill:#E8B1B1;
    classDef deprecated fill:#E8B1B1;
    classDef superseeded fill:#E8E5B1;
```