Files
ThreatHunt/start-clean.bat
mblanke b398f6624c CLAUDE branch
i made have screwed the pooch with this
2025-06-17 06:55:38 -04:00

23 lines
613 B
Batchfile

@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