Spaces:
Sleeping
Sleeping
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
|