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;
```
|