Regalamiunsorriso/bin/Face_Recognition_Windows/run_face_encoder.bat
MaddoScientisto 6e37aa16c8
All checks were successful
Publish FaceAI Container / publish (push) Successful in 5m20s
Enhance Face Recognition Workflow with Remote Capabilities and Consent Management
- Updated `run_face_encoder.bat` to include remote execution parameters for SSH and SCP.
- Refactored `run_face_encoder.ps1` to accept remote execution parameters and handle remote file operations.
- Modified `FaceAiUploadPanel.vue` to introduce consent management UI and error handling for race availability.
- Enhanced `useFaceAiHome.js` to manage consent acceptance and integrate cookie handling for biometric data processing notice.
- Updated `HomeView.vue` to streamline the upload panel and integrate consent handling logic.

Co-authored-by: Copilot <copilot@github.com>
2026-04-24 19:33:38 +02:00

9 lines
402 B
Batchfile

@echo off
set "REMOTE_USER=piero"
set "REMOTE_HOST=83.149.164.4"
set "REMOTE_PORT=410"
set "SSH_EXE=C:\Windows\System32\OpenSSH\ssh.exe"
set "SCP_EXE=C:\Windows\System32\OpenSSH\scp.exe"
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0run_face_encoder.ps1" -RemoteUser "%REMOTE_USER%" -RemoteHost "%REMOTE_HOST%" -RemotePort "%REMOTE_PORT%" -SshExe "%SSH_EXE%" -ScpExe "%SCP_EXE%"
pause