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

30
setup-backend.bat Normal file
View File

@@ -0,0 +1,30 @@
@echo off
title Setup Backend
echo Setting up Cyber Threat Hunter Backend...
cd backend
REM Create virtual environment if it doesn't exist
if not exist "venv" (
echo Creating virtual environment...
python -m venv venv
if errorlevel 1 (
echo Error: Failed to create virtual environment
echo Make sure Python is installed
pause
exit /b 1
)
)
echo Activating virtual environment...
call venv\Scripts\activate.bat
echo Installing Flask and dependencies...
pip install flask==3.0.0
pip install flask-cors==4.0.0
pip install python-dotenv==1.0.0
pip install requests==2.31.0
pip install werkzeug==3.0.1
echo Backend setup complete!
pause