-
Notifications
You must be signed in to change notification settings - Fork 0
Installation‐Guide
Devvekariya711 edited this page Nov 26, 2025
·
1 revision
Complete guide to installing and setting up the Automated DevOps Agent.
- Virtual Machine or Docker
- 4GB RAM minimum
- 2GB disk space
git clone https://github.com/Devvekariya711/automated_devops_agent.git
cd automated_devops_agentLinux/Mac:
python3 -m venv .venv
source .venv/bin/activateWindows:
python -m venv .venv
.venv\Scripts\activatepip install --upgrade pip
pip install -r requirements.txtEnvironment Variable:
# Linux/Mac
export GOOGLE_API_KEY="your_gemini_api_key_here"
# Windows PowerShell
$env:GOOGLE_API_KEY="your_gemini_api_key_here"Or use .env file:
echo "GOOGLE_API_KEY=your_key" > .envpython -c "from automated_devops_agent.agent import root_agent; print('✅ Success!')"adk webOpen: http://localhost:8000
Test: Type "Review automated_devops_agent/tools.py"
# Build
docker build -t devops-agent .
# Run
docker run -p 8000:8000 -e GOOGLE_API_KEY="your_key" devops-agentModule not found?
pip install google-adk --upgradeAPI key not set?
export GOOGLE_API_KEY="your_key"Port in use?
adk web --port 8080- Read FAQ
- Check Troubleshooting
- Start reviewing code!