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

43
start.bat Normal file
View File

@@ -0,0 +1,43 @@
@echo off
title Cyber Threat Hunter
echo ========================================
echo Cyber Threat Hunter
echo ========================================
REM Check if setup is needed
if not exist "backend\venv" (
echo Backend not set up. Running setup...
call setup-backend.bat
)
if not exist "frontend\node_modules" (
echo Frontend not set up. Running setup...
call setup-frontend.bat
)
echo Starting servers...
REM Start Backend
start "Backend" cmd /k "start-backend.bat"
REM Wait a moment
timeout /t 3 /nobreak >nul
REM Start Frontend
start "Frontend" cmd /k "start-frontend.bat"
echo.
echo ========================================
echo Servers are starting...
echo Backend: http://localhost:5000
echo Frontend: http://localhost:3000
echo ========================================
echo.
echo Press any key to exit...
pause >nul
echo Backend: http://localhost:5000
echo Frontend: http://localhost:3000
echo ========================================
echo.
echo Press any key to exit...
pause >nul