jatin gyass
initial commit
2eef9ea
Raw
History Blame Contribute Delete
931 Bytes
@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