# Local CI/CD System — .gitignore

# Secrets e credenziali — mai committare
*.credential
*.password
secrets/
.env
.env.*

# Log e output temporanei
logs/
*.log

# Artifact di build (storti su F:\CI\Artifacts, non nel repo)
artifacts/

# Directory di lavoro runtime (create da runner)
work/
runner/work/

# File runner con registration token (generato da act_runner register)
runner/.runner

# File VMware generati
*.vmx.lck/
*.vmdk
*.nvram
*.vmsd
*.vmxf
*.vmem
*.vmsn

# Windows
Thumbs.db
desktop.ini
$RECYCLE.BIN/

# VS Code
.vscode/settings.json
.vscode/launch.json

# Temp
*.tmp
~$*

# Copilot Orchestrator temporary files
.orchestrator/
.worktrees/

# Python
__pycache__/
*.py[cod]
*.egg-info/
build/
dist/
.venv/
venv/
.coverage
.coverage.*
htmlcov/
.pytest_cache/
.mypy_cache/
.ruff_cache/
