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.
36 lines
No EOL
1.4 KiB
Text
36 lines
No EOL
1.4 KiB
Text
NODE_ENV=development
|
|
FACEAI_CLIENT_DEV_IMAGE=node:22-trixie-slim
|
|
FACEAI_PROCESSOR_DEV_IMAGE=regalami-faceai-processor-local
|
|
FACEAI_PORT=3001
|
|
FACEAI_PUBLISHED_PORT=3001
|
|
FACEAI_FRONTEND_URL=http://localhost:3001
|
|
FACEAI_PUBLIC_BASE_URL=http://localhost:3001
|
|
FACEAI_LEGACY_RETURN_MODE=direct
|
|
FACEAI_LEGACY_HOME_URL=http://localhost:8080/index.jsp
|
|
FACEAI_ENABLE_LOCAL_LEGACY_STATIC=1
|
|
FACEAI_LOCAL_LEGACY_STATIC_ROOT=/legacy-www
|
|
FACEAI_SHARED_SECRET=disagio-spaghetti-science-lol-boh
|
|
FACEAI_SESSION_COOKIE=rus_faceai_session
|
|
FACEAI_REDIS_URL=redis://redis:6379
|
|
FACEAI_QUEUE_NAME=faceai-searches
|
|
FACEAI_RUNTIME_ROOT=/data/runtime
|
|
FACEAI_UPLOAD_ROOT=/data/runtime/uploads
|
|
FACEAI_LOG_ROOT=/data/logs
|
|
FACEAI_PKL_ROOT=/data/pkl
|
|
FACEAI_MATCHER_BINARY=/app/bin/face_matcher
|
|
FACEAI_MATCHER_TOLERANCE=0.5
|
|
FACEAI_WORKER_CONCURRENCY=2
|
|
FACEAI_WORKER_TIMEOUT_MS=300000
|
|
FACEAI_PROCESSOR_HEARTBEAT_GRACE_MS=20000
|
|
FACEAI_PROCESSOR_HEARTBEAT_INTERVAL_MS=5000
|
|
FACEAI_PROCESSOR_HEARTBEAT_TTL_SECONDS=20
|
|
FACEAI_FEATURE_ENABLED=1
|
|
FACEAI_BACKEND_INTERNAL_URL=http://faceai:3001
|
|
FACEAI_ALLOW_DEV_HANDOFF=1
|
|
FACEAI_IDENTITY_COOKIE=rus_faceai_identity
|
|
FACEAI_HANDOFF_URL=http://localhost:3001/dev/legacy/launch
|
|
LIVE_SITE_BASE_URL=https://www.regalamiunsorriso.it
|
|
LIVE_SITE_LOGIN_URL=https://www.regalamiunsorriso.it/login_clienti-it.html
|
|
LIVE_SITE_RACE_URL=https://www.regalamiunsorriso.it/42%20HALF%20MARATHON%20FIRENZE_gara-1018545---96-1.html
|
|
LIVE_SITE_USERNAME=piero
|
|
LIVE_SITE_PASSWORD=AA25061958Pg! |