Metadata-Version: 2.4
Name: devops-dojo
Version: 1.1.0
Summary: Interactive CLI tool for DevOps skill development through interview drills and hands-on labs
Author: DevOps Dojo Team
License-Expression: MIT
Keywords: cli,devops,interview,labs,learning
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Education
Requires-Python: >=3.11
Requires-Dist: httpx>=0.27.0
Requires-Dist: jinja2>=3.0
Requires-Dist: pydantic>=2.0
Requires-Dist: pyyaml>=6.0
Requires-Dist: readchar>=4.0
Requires-Dist: rich>=13.0
Requires-Dist: typer[all]>=0.9.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23.0; extra == 'dev'
Requires-Dist: pytest>=8.0.0; extra == 'dev'
Description-Content-Type: text/markdown

# DevOps Dojo CLI

Level up your DevOps skills with AI-powered interview drills and hands-on labs. Practice Git, CI/CD, Terraform, Kubernetes, and Azure across foundational to advanced levels.

## Installation

```bash
pip install devops-dojo
```

## Usage

```bash
# Interactive mode (recommended)
devops-dojo start

# Interview mode
devops-dojo interview --topic kubernetes --level foundational
devops-dojo interview --topic terraform --level intermediate
devops-dojo interview --random

# Lab mode
devops-dojo lab list
devops-dojo lab info 1.1-git-workflow
devops-dojo lab submit https://github.com/user/repo --lab 1.1-git-workflow

# Progress tracking
devops-dojo progress summary
devops-dojo progress weak-areas
devops-dojo progress export --format html

# Configuration
devops-dojo config set api_url https://api.devops-dojo.tech
devops-dojo config show
```

## Topics

- **Git** - Workflows, branching strategies, advanced operations
- **CI/CD** - Pipelines, multi-stage deployments, GitOps
- **Terraform** - Infrastructure as Code, modules, state management
- **Kubernetes** - Deployments, Helm, operations
- **Azure** - Networking, compute, storage, HA patterns

## Levels

| Level | Focus |
|-------|-------|
| **Foundational** | Core concepts, single environment, "how to do it" |
| **Intermediate** | Multi-environment, advanced patterns, "how to do it well" |
| **Advanced** | Architecture, trade-offs, "why" |

## Configuration

Configuration is stored in `~/.devops-dojo/config.yaml`:

```yaml
api_url: https://api.devops-dojo.tech
api_key: your-api-key
```

## Progress & Reports

Your progress is tracked locally in `~/.devops-dojo/data/progress.json`. Export as HTML:

```bash
devops-dojo progress export --format html
```
