VERIDEX.V1 / setup_and_run.bat
shadow55gh
fix: remove node_modules and cache from tracking
81f9dfe
raw
history blame contribute delete
388 Bytes
@echo off
echo ========================================
echo VERIDEX v4.0 - Deepfake Detector
echo ========================================
echo.
echo [1/3] Installing dependencies...
cd backend
pip install -r requirements.txt
echo.
echo [2/3] Starting VERIDEX server...
start "" http://localhost:8000
echo.
echo [3/3] Opening browser...
uvicorn main:app --reload --port 8000
pause