Conversation
mjanez
commented
May 12, 2026
- Changed the web vitals reporting function to use the new metric imports and updated the parameter type for better type safety.
- Changed the web vitals reporting function to use the new metric imports and updated the parameter type for better type safety.
🐳 Docker Images Build Test CompletedRegistry:
To test locally:# Clone PR branch
git fetch origin pull/11/head:pr-11
git checkout pr-11
# Build and run with docker-compose
docker compose up -d --build
# Access application
# Frontend: https://localhost
# Backend API: https://localhost/api/healthOr build images manually:# Build backend
docker build -t mqa-backend:pr-11 -f Dockerfile.backend .
# Build frontend
docker build -t mqa-frontend:pr-11 -f Dockerfile.frontend .
# Run services
docker network create mqa-network
docker run -d --name mqa-backend \
--network mqa-network \
-e NODE_ENV=production \
mqa-backend:pr-11
docker run -d --name mqa-frontend \
--network mqa-network \
-p 3000:3000 \
mqa-frontend:pr-11*Built from commit: |
- Added a new function to update the compliance metric based on SHACL validation results, recalculating totals and percentages accordingly. - Integrated the new function into the validation route to streamline compliance checks.
🐳 Docker Images Build Test CompletedRegistry:
To test locally:# Clone PR branch
git fetch origin pull/11/head:pr-11
git checkout pr-11
# Build and run with docker-compose
docker compose up -d --build
# Access application
# Frontend: https://localhost
# Backend API: https://localhost/api/healthOr build images manually:# Build backend
docker build -t mqa-backend:pr-11 -f Dockerfile.backend .
# Build frontend
docker build -t mqa-frontend:pr-11 -f Dockerfile.frontend .
# Run services
docker network create mqa-network
docker run -d --name mqa-backend \
--network mqa-network \
-e NODE_ENV=production \
mqa-backend:pr-11
docker run -d --name mqa-frontend \
--network mqa-network \
-p 3000:3000 \
mqa-frontend:pr-11*Built from commit: |