# =============================================================================
# PH Agent Hub — .gitignore
# =============================================================================

# --- Environment (contains secrets) ---
infrastructure/env
infrastructure/.env
.env
.env.local

# --- Python ---
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
.eggs/
*.egg
.venv/
venv/
env/

# --- Node / Frontend ---
node_modules/
dist/
.vite/
frontend/dev-dist/

# --- IDE ---
.vscode/
.idea/
*.swp
*.swo
*~

# --- OS ---
.DS_Store
Thumbs.db

# --- Logs ---
*.log

# --- Docker ---
.docker/
