File size: 931 Bytes
2eef9ea
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
@echo off
REM setup.bat - Initialize development environment (Windows)

echo πŸ”§ Setting up Multi-Agent System...

REM Create virtual environment
if not exist "venv" (
    echo πŸ“¦ Creating virtual environment...
    python -m venv venv
)

REM Activate virtual environment
echo βœ… Activating virtual environment...
call venv\Scripts\activate.bat

REM Install dependencies
echo πŸ“₯ Installing Python dependencies...
python -m pip install --upgrade pip setuptools wheel
pip install -r requirements.txt
pip install -r requirements-dev.txt

REM Setup frontend
if exist "frontend" (
    echo 🌐 Setting up frontend...
    cd frontend
    call npm install
    cd ..
)

REM Create .env file if it doesn't exist
if not exist ".env" (
    echo πŸ“‹ Creating .env file...
    copy .env.example .env
    echo ⚠️  Please update .env with your configuration
)

echo ✨ Setup complete! Run 'scripts\run.bat' to start the system
pause