feat(monitor-frontend): add FaceAI Audit Monitor application with Vue.js and Vite setup
All checks were successful
Publish FaceAI Container / publish (push) Successful in 13m8s

- Created App.vue for the main application interface with localization support.
- Added main.js to bootstrap the Vue application.
- Introduced styles.css for application styling.
- Configured Vite for development and proxying API requests.
- Updated docker-compose files to include the new monitor service.
- Added Dockerfile for building the monitor frontend.
- Configured Nginx for serving the frontend and proxying API requests.
- Updated package.json and package-lock.json to include monitor-frontend workspace.
- Added initial SQLite database for audit monitoring.
This commit is contained in:
MaddoScientisto 2026-05-20 18:57:20 +02:00
commit a95ae56134
21 changed files with 1755 additions and 2 deletions

View file

@ -38,6 +38,15 @@ services:
- ../test_pkl:${FACEAI_PKL_ROOT:-/data/pkl}:ro
- faceai-runtime:${FACEAI_RUNTIME_ROOT:-/data/runtime}
faceai-monitor:
build:
context: ..
dockerfile: faceai/docker/monitor-frontend.Dockerfile
image: ${FACEAI_MONITOR_DEV_IMAGE:-regalami-faceai-monitor-local}
depends_on:
faceai:
condition: service_healthy
processor:
build:
context: ..