-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Documentation cleanup and updates (#469)
* Clean up architecture documentation * Remove old stuff from ADRs and READMEs, update for clarity * Fix typos * Color change for readability
- Loading branch information
1 parent
b2bfed0
commit 08cef3c
Showing
37 changed files
with
124 additions
and
92 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# ATJ Spotlight - frontend interface | ||
# Forms Platform Spotlight - frontend interface | ||
|
||
## Summary | ||
|
||
ATJ Spotlight is the public face of the 10x Access to Justice Platform project. We will share progress of our work and demo our findings here. | ||
Forms Platform Spotlight is the public face of the project. We will share progress of our work and demo our findings here. Currently, this application includes a client-side version of the form manager interface. |
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
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
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
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 @@ | ||
# Forms Platform architecture | ||
|
||
## Overview | ||
|
||
Forms Platform is organized into several packages: | ||
|
||
| Package | Description | Dependencies | | ||
| ------------------------------ | ---------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------- | | ||
| [Forms](forms/README.md) | Platform services and domain logic | [Common](common/README.md), [Database](database/README.md) | | ||
| [Server](server/README.md) | Platform Node.js web server | [Auth](auth/README.md), [Common](common/README.md), [Database](database/README.md), [Design](design/README.md), [Forms](forms/README.md) | | ||
| [Design](design/README.md) | User-facing interface components | [Common](common/README.md), [Forms](forms/README.md) | | ||
| [Auth](auth/README.md) | Authentication and authorization | [Common](common/README.md), [Database](database/README.md) | | ||
| [Common](common/README.md) | Shared utilities | _None_ | | ||
| [Database](database/README.md) | Backend storage | [Common](common/README.md) | | ||
|
||
## High-level architecture diagram | ||
|
||
This C4-like architectural diagram documents data flows in a typical deployment scenario: | ||
|
||
```mermaid | ||
flowchart TB | ||
%% Style definitions | ||
classDef blue fill:#2374ab,color:#fff | ||
classDef invisible opacity:0 | ||
subgraph "External Users" | ||
formFiller[Form Filler: Submits forms] | ||
formCreator[Form Creator: Uses no-code interface to create forms] | ||
formReviewer[Form Reviewer: Reviews submitted forms] | ||
end | ||
subgraph platform["Forms Platform (Internal)"] | ||
style platform fill:#fcf8d4,color:#000 | ||
webServer[Platform Server: Handles form creation, submission, and interactions]:::blue | ||
database[(Postgres DB: Stores form data and user information)] | ||
end | ||
subgraph "External Systems" | ||
loginGov[Login.gov: Handles authentication] | ||
subgraph "Agency Systems" | ||
agencyBackend[Agency Backend Systems: Receives submitted form data] | ||
s3Bucket[Amazon S3: Stores completed forms] | ||
end | ||
end | ||
formCreator -->|Creates forms using| webServer | ||
formFiller -->|Submits forms via| webServer | ||
formReviewer -->|Reviews submitted forms using| webServer | ||
webServer -->|Stores and retrieves form data from| database | ||
webServer -->|Authenticates form creators - https| loginGov | ||
webServer -->|Submits form data to Agency Backend - https| agencyBackend | ||
webServer -->|Uploads form PDFs to S3 Bucket - https| s3Bucket | ||
%% Forcing "External Systems" to be below "Forms Platform" | ||
dummyNode[ ]:::invisible | ||
webServer --> dummyNode | ||
dummyNode --> loginGov | ||
``` |
Oops, something went wrong.