mirror of
https://github.com/mblanke/ThreatHunt.git
synced 2026-03-01 14:00:20 -05:00
CLAUDE branch
i made have screwed the pooch with this
This commit is contained in:
22
start-clean.bat
Normal file
22
start-clean.bat
Normal 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
|
||||
Reference in New Issue
Block a user