Enhance Face Recognition Workflow with Remote Capabilities and Consent Management
All checks were successful
Publish FaceAI Container / publish (push) Successful in 5m20s
All checks were successful
Publish FaceAI Container / publish (push) Successful in 5m20s
- 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>
This commit is contained in:
parent
dd7d4c865b
commit
6e37aa16c8
6 changed files with 1163 additions and 129 deletions
|
|
@ -1,3 +1,9 @@
|
|||
@echo off
|
||||
powershell.exe -NoProfile -ExecutionPolicy Bypass -File "%~dp0run_face_encoder.ps1"
|
||||
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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue