Equalify Hub
Sign Up for Updates
EqualifyEverything
/
equalify
Code
/
Commits
/ 879e068
Merge pull request #651 from EqualifyEverything/staging
Staging
azdak
committed on Aug 20, 2026, 05:38 PM
Showing
112
changed files
+8638 additions
-1670 deletions
M
.gitignore
+17
-1
M
CONTRIBUTE.md
+220
-16
A
LICENSE
+661
A
QUICKSTART.md
+505
M
README.md
+54
-34
M
apps/backend/package.json
+1
-2
M
apps/backend/routes/auth/exportAuditTable.ts
+2
-4
M
apps/backend/routes/auth/getAuditChart.ts
+2
-2
M
apps/backend/routes/auth/getAuditResults.ts
+2
-2
M
apps/backend/routes/auth/getAuditSummary.ts
+2
-2
M
apps/backend/routes/auth/getAuditSummaryFast.ts
+26
-3
M
apps/backend/routes/auth/getAuditTable.ts
+4
-6
M
apps/backend/routes/auth/getQuickScans.ts
+14
-2
M
apps/backend/routes/auth/inviteUser.ts
+2
-2
M
apps/backend/routes/auth/saveQuickScan.ts
+3
-2
M
apps/backend/routes/auth/trackUser.ts
-11
M
apps/backend/routes/cognito/postConfirmationConfirmSignUp.ts
+19
-4
M
apps/backend/routes/index.ts
+2
-2
M
apps/backend/routes/internal/migrateStaleBlockers.ts
+13
-13
M
apps/backend/routes/public/requestAccess.ts
+2
-2
M
apps/backend/routes/scheduled/runEveryMinute.ts
+1
-12
A
apps/backend/utils/buildUrlSearchClause.ts
+9
M
apps/backend/utils/index.ts
+2
A
apps/backend/utils/isSsoEnabled.ts
+11
M
apps/backend/utils/verifySsoToken.ts
+21
-9
M
apps/frontend/src/components/BlockersTable.tsx
+47
-8
M
apps/frontend/src/components/BlockersTableSummary.tsx
+41
-3
M
apps/frontend/src/components/Navigation.tsx
+1
-1
M
apps/frontend/src/routes/Audit.tsx
+11
-2
M
apps/frontend/src/routes/Logs.tsx
+2
-2
M
apps/frontend/src/utils/useGlobalStore.ts
+2
-4
M
db/dump.sh
+5
-1
M
db/hasura-metadata.json
+11
-5
A
db/migrations/add_access_requests.sql
+21
D
db/migrations/add_blocker_llm_summaries.sql
-14
A
db/migrations/add_blockers_url_text.sql
+10
A
db/migrations/add_scan_denormalized_counts.sql
+11
D
db/migrations/fix_blocker_summary_view_correlated_subquery.sql
-113
D
db/migrations/fix_most_common_functions_scan_filter.sql
-100
M
db/schema.sql
+48
-264
A
docs/technical/README.md
+86
A
docs/technical/architecture-overview.md
+99
A
docs/technical/backend-api.md
+208
A
docs/technical/contributing.md
+226
A
docs/technical/database-schema.md
+292
A
docs/technical/deployment-guide.md
+283
A
docs/technical/frontend-guide.md
+309
A
docs/technical/scanning-services.md
+240
A
infrastructure/.terraform.lock.hcl
+46
A
infrastructure/README.md
+143
A
infrastructure/artifacts/README.md
+15
A
infrastructure/artifacts/java-stub.jar
A
infrastructure/artifacts/node-stub.zip
A
infrastructure/bootstrap/.terraform.lock.hcl
+46
A
infrastructure/bootstrap/main.tf
+119
A
infrastructure/main.tf
+640
A
infrastructure/modules/api_gateway/main.tf
+99
A
infrastructure/modules/api_gateway/outputs.tf
+17
A
infrastructure/modules/api_gateway/variables.tf
+37
A
infrastructure/modules/bastion/main.tf
+56
A
infrastructure/modules/bastion/outputs.tf
+3
A
infrastructure/modules/bastion/variables.tf
+23
A
infrastructure/modules/cognito/main.tf
+80
A
infrastructure/modules/cognito/outputs.tf
+11
A
infrastructure/modules/cognito/variables.tf
+40
A
infrastructure/modules/frontend_hosting/main.tf
+116
A
infrastructure/modules/frontend_hosting/outputs.tf
+15
A
infrastructure/modules/frontend_hosting/variables.tf
+24
A
infrastructure/modules/hasura_ecs/main.tf
+266
A
infrastructure/modules/hasura_ecs/outputs.tf
+36
A
infrastructure/modules/hasura_ecs/variables.tf
+100
A
infrastructure/modules/lambda_function/main.tf
+182
A
infrastructure/modules/lambda_function/outputs.tf
+23
A
infrastructure/modules/lambda_function/variables.tf
+116
A
infrastructure/modules/monitoring/main.tf
+95
A
infrastructure/modules/monitoring/outputs.tf
+3
A
infrastructure/modules/monitoring/variables.tf
+38
A
infrastructure/modules/networking/main.tf
+248
A
infrastructure/modules/networking/outputs.tf
+31
A
infrastructure/modules/networking/variables.tf
+32
A
infrastructure/modules/rds/main.tf
+53
A
infrastructure/modules/rds/outputs.tf
+24
A
infrastructure/modules/rds/variables.tf
+81
A
infrastructure/modules/secrets/main.tf
+80
A
infrastructure/modules/secrets/outputs.tf
+30
A
infrastructure/modules/secrets/variables.tf
+13
A
infrastructure/modules/sqs/main.tf
+45
A
infrastructure/modules/sqs/outputs.tf
+15
A
infrastructure/modules/sqs/variables.tf
+19
A
infrastructure/outputs.tf
+112
A
infrastructure/providers.tf
+29
A
infrastructure/terraform.tfvars.example
+48
A
infrastructure/variables.tf
+191
A
infrastructure/versions.tf
+27
M
package-lock.json
+3
-591
M
package.json
+2
-2
A
scripts/deploy-app.sh
+397
A
scripts/destroy-app.sh
+196
A
services/aws-lambda-crawler/package-lock.json
+947
M
services/aws-lambda-crawler/package.json
+1
-1
M
services/aws-lambda-scan-html/package.json
+1
-1
M
services/aws-lambda-scan-pdf/package.json
+1
-1
M
services/aws-lambda-scan-sqs-router/package.json
+1
-1
M
services/aws-lambda-verapdf-interface/pom.xml
+29
-20
M
services/aws-lambda-verapdf-interface/src/main/java/com/equalifyuic/app/handler.java
+44
-2
M
shared/types/package.json
+1
-1
D
test-data/100-university-library-sites.csv
-100
D
test-data/100-wordpress-sites.csv
-100
D
test-data/50-angular-sites.csv
-50
D
test-data/50-react-sites.csv
-50
D
test-data/csv-input.csv
-2
D
test-data/top-100-sites.csv
-100
Browse files at this commit →