# ─────────────────────────────────────────────────────────────────────────────
# .dockerignore — build context: agenticpythonlib/
#
# Placed at agenticpythonlib/ root because that is the docker-compose build
# context for all Python services (context: ../..).
# ─────────────────────────────────────────────────────────────────────────────

# Python artifacts
**/__pycache__/
**/*.pyc
**/*.pyo
**/*.pyd
**/*.egg-info/
**/.eggs/
dist/
build/
.venv/
.pytest_cache/

# Next.js build output (large, not needed in Python image)
examples/devops_agent/nextui/.next/
examples/devops_agent/nextui/node_modules/
examples/devops_agent/node_modules/
examples/devops_agent/fullstack-app/

# Exported Docker image tarballs (saved images, not needed in build)
examples/devops_agent/export/

# SQLite database and runtime data (mounted as volumes at runtime)
examples/devops_agent/data/
examples/devops_agent/webui/data.db

# Large scratch / sample files
examples/devops_agent/snmp-collection-project/
examples/devops_agent/snmp-collector/
examples/devops_agent/*.tar.gz
examples/devops_agent/*.tar
examples/devops_agent/*.zip

# Git and editor files
.git/
.gitignore
.vscode/
.idea/
*.swp
*.swo

# Test artifacts
**/.pytest_cache/
**/htmlcov/
**/.coverage

# Docs (not needed in image)
docs/

# C++ / Java libraries (different services, not Python)
agenticcpplibrary/
agenticjavalibrary/
agenticnodelib/
