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