CLAUDE branch

i made have screwed the pooch with this
This commit is contained in:
2025-06-17 06:55:38 -04:00
parent 6a2279b704
commit b398f6624c
20 changed files with 1159 additions and 1 deletions

22
quick-start.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
echo Quick Start - Velo Threat Hunter
cd backend
call venv\Scripts\activate
pip install flask flask-cors python-dotenv requests werkzeug
start "Backend" cmd /k "python app.py"
cd ..
timeout /t 3 /nobreak >nul
cd frontend
if exist package.json (
start "Frontend" cmd /k "npm run dev"
) else (
echo Frontend not configured yet
)
cd ..
echo.
echo Servers starting...
pause