Skip to content

Architecture for VM and ECS #404

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 6 commits into from
Mar 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions query-connector/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,3 +173,17 @@ graph TD
class P1,P2,P3,P4,P5 pages;
class I external;
```



### Infrastructure Architecture Diagram


**ECS Infrastructure**

![ECS](./public/QC%20Architecture-ECS.jpg)



**VM Infrastructure**
![VM](./public/QC%20Architecture-VM.jpg)
Binary file added query-connector/public/QC Architecture-ECS.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added query-connector/public/QC Architecture-VM.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 0 additions & 2 deletions query-connector/src/app/shared/format-service.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -297,14 +297,12 @@
* @returns The string "Male", "Female", or "".
*/
export function formatSex(sex: string | undefined): string {
switch (sex) {
case "male":
return "Male";
case "female":
return "Female";
case undefined:
return "";
default:
return "";

Check warning on line 306 in query-connector/src/app/shared/format-service.tsx

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement

Check warning on line 306 in query-connector/src/app/shared/format-service.tsx

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🌿 Branch is not covered

Warning! Not covered branch
}

Check warning on line 307 in query-connector/src/app/shared/format-service.tsx

View workflow job for this annotation

GitHub Actions / Coverage annotations (🧪 jest-coverage-report-action)

🧾 Statement is not covered

Warning! Not covered statement
}
Loading