generated from CDCgov/template
-
Notifications
You must be signed in to change notification settings - Fork 6
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 #1446 from CDCgov/devex/1247-add_impact_sections_0…
…01-006 ADRs: Filling in impact sections for 001 - 006
- Loading branch information
Showing
8 changed files
with
218 additions
and
49 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
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
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 |
---|---|---|
@@ -0,0 +1,60 @@ | ||
# 5. Option Enabling Architecture (OEA) | ||
|
||
Date: 2022-10-24 | ||
|
||
## Decision | ||
|
||
We will use use OEA practices to inform how we add new features and refactor. | ||
|
||
## Status | ||
|
||
Accepted. | ||
|
||
## Context | ||
|
||
OEA is similar to [Clean Architecture](https://blog.cleancoder.com/uncle-bob/2012/08/13/the-clean-architecture.html). | ||
There are a couple main concepts that we strive to maintain while also being pragmatic. | ||
|
||
1. Less important code depends on more important code. For example, third-party dependencies such as ReST | ||
frameworks, and database ORMs. This allows for swapping out less important code without affecting the more | ||
important code. | ||
|
||
|
||
2. Dependency inversion. This allows the path of code execution not to follow the dependency path of | ||
less important code depending on more important code. For example, when business logic needs to call the | ||
database. | ||
|
||
## Impact | ||
|
||
### Positive | ||
|
||
- **More flexible architecture** | ||
|
||
|
||
- **Risk mitigation** through delayed decision-making. | ||
|
||
|
||
- **Minimizes large-scale changes and overhauls** | ||
|
||
|
||
- **Better maintainability** | ||
|
||
### Negative | ||
|
||
- **Experience May Be Required:** requires more experience to implement successfully | ||
|
||
|
||
- **Increased initial development time** | ||
|
||
|
||
- **Increased Planning:** requires much more forethought prior to implementation | ||
|
||
### Risks | ||
|
||
- **Overengineering:** potential to overengineer by keeping too many options open | ||
- Deferred decision-making can lead to technical debt | ||
|
||
## Related Issues | ||
|
||
- #1 | ||
- #13 |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Architectural Decision Record Formatting Checklist | ||
Below is a formatting checklist with some guidelines that serves to help keep our ADRs looking clean and uniform. | ||
|
||
1. See [adr/001-architecture-decision-records.md](001-architecture-decision-records.md) for template and section guidelines/requirements. | ||
|
||
|
||
2. Review ‘Context’ section for grammar, typos, and clarity. ** **Keep in mind** ** readers may have less inside knowledge or experience with the project when reading these documents. | ||
|
||
|
||
2. **Bulleted Lists:** Full sentences get periods and first letter capitalized. Fragmented sentences have no period and aren’t capitalized. | ||
|
||
|
||
3. **Bulleted Lists:** Embolden bulleted titles with colons | ||
|
||
|
||
4. Make sure line spacing is appropriate give a full line of space between bullet points | ||
|
||
|
||
5. If you are unsure about something, ask! |