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

@ -3,6 +3,7 @@
"private": true,
"workspaces": [
"apps/frontend",
"apps/monitor-frontend",
"apps/backend",
"apps/processor"
],
@ -10,12 +11,13 @@
"dev": "concurrently \"npm:dev:backend\" \"npm:dev:frontend\"",
"dev:backend": "npm run dev --workspace @regalami/faceai-backend",
"dev:frontend": "npm run dev --workspace @regalami/faceai-frontend",
"dev:monitor": "npm run dev --workspace @regalami/faceai-monitor-frontend",
"dev:processor": "npm run dev --workspace @regalami/faceai-processor",
"compose:prod:up": "docker compose -f docker-compose.yml --env-file .env.production up -d",
"compose:prod:down": "docker compose -f docker-compose.yml --env-file .env.production down",
"compose:dev:up": "docker compose --env-file .env.development up --build",
"compose:dev:down": "docker compose --env-file .env.development down",
"build": "npm run build --workspace @regalami/faceai-frontend && npm run build --workspace @regalami/faceai-backend",
"build": "npm run build --workspace @regalami/faceai-frontend && npm run build --workspace @regalami/faceai-monitor-frontend && npm run build --workspace @regalami/faceai-backend",
"start": "npm run start --workspace @regalami/faceai-backend",
"start:processor": "npm run start --workspace @regalami/faceai-processor",
"test:e2e": "playwright test",