├── .github └── ISSUE_TEMPLATE │ ├── ux-decision-record.md │ └── architecture-decision-record.md └── README.md /.github/ISSUE_TEMPLATE/ux-decision-record.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: UX Decision Record 3 | about: Create a new UX decision record 4 | title: '' 5 | labels: kind/ux-decision 6 | --- 7 | 8 | ## Status 9 | `Proposed` 10 | 11 | ## Decision 12 | > What is the change that we're proposing and/or doing? 13 | 14 | ## Context 15 | > What is the issue that we're seeing that is motivating this decision or change? 16 | 17 | ## Consequences 18 | > What becomes easier or more difficult to do because of this change? 19 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Altinn Decision Log 2 | 3 | [Log](https://github.com/Altinn/architecture-decision-log/issues) and [Kanban](https://github.com/orgs/Altinn/projects/131) for architecture and design/ux decisions that are relevant **across teams and products**. 4 | 5 | ## Why? 6 | 7 | - https://cognitect.com/blog/2011/11/15/documenting-architecture-decisions 8 | - https://medium.com/olzzio/from-architectural-decisions-to-design-decisions-f05f6d57032b 9 | - https://github.blog/2020-08-13-why-write-adrs/ 10 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/architecture-decision-record.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Architecture Decision Record 3 | about: Create a new architecture decision record 4 | title: '' 5 | labels: kind/architecture-decision 6 | --- 7 | 8 | ## Status 9 | `Proposed` 10 | 11 | ## Decision 12 | > What is the change that we're proposing and/or doing? 13 | 14 | ## Context 15 | > What is the issue that we're seeing that is motivating this decision or change? 16 | 17 | ## Consequences 18 | > What becomes easier or more difficult to do because of this change? 19 | --------------------------------------------------------------------------------