Get the DevOps Intelligence Agent running in 5 minutes!
- AWS Account with Bedrock access
- Python 3.11+
- Node.js 18+
git clone https://github.com/yourusername/devops-intelligence-agent.git
cd devops-intelligence-agent
# Python backend
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txt
# Frontend
cd frontend && npm install && cd ..# Enable Bedrock models in AWS Console
# Then configure credentials
aws configurepython infrastructure/deploy.py --environment development --region us-east-1cp .env.example .env
# Edit .env with your AWS details from CloudFormation outputs# Terminal 1: Backend
python src/main.py
# Terminal 2: Frontend
cd frontend && npm startOpen http://localhost:3000 and try:
- "List my EC2 instances"
- "Analyze my AWS costs"
- "Review this code: [paste code]"
docker-compose up --buildAccess at http://localhost:3000
- 📖 Full Setup: docs/SETUP_GUIDE.md
- 🏗️ Architecture: docs/ARCHITECTURE.md
- 🎬 Demo Script: docs/DEMO_SCRIPT.md
# Health check
curl http://localhost:8000/health
# Expected: {"status": "healthy", "service": "devops-intelligence-agent"}- Infrastructure: "Show me all my AWS resources"
- Cost: "What are my biggest cost drivers?"
- Code: "Review this Python code for security issues"
- Troubleshooting: "Why is my Lambda function timing out?"
- Deployment: "Deploy my application to production"
Bedrock Access Denied: Enable models in Bedrock console
Table Not Found: Run CloudFormation deployment
Connection Refused: Check both backend and frontend are running
Ready to Build! 🚀
For the hackathon submission, see docs/SUBMISSION.md