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
start-clean.bat Normal file
View File

@@ -0,0 +1,22 @@
@echo off
title Cyber Threat Hunter - Clean Start
echo ========================================
echo Cyber Threat Hunter - Clean Startup
echo ========================================
REM Clean backend
echo Cleaning backend...
cd backend
if exist "__pycache__" rmdir /s /q "__pycache__" 2>nul
if exist "*.pyc" del /f "*.pyc" 2>nul
REM Clean frontend
echo Cleaning frontend...
cd ..\frontend
if exist "node_modules" rmdir /s /q "node_modules" 2>nul
if exist "package-lock.json" del /f "package-lock.json" 2>nul
if exist "dist" rmdir /s /q "dist" 2>nul
echo.
echo Clean complete. Run start.bat to restart.
pause