Files
2026-05-25 22:04:22 +02:00

65 lines
867 B
Plaintext

# Local CI/CD System — .gitignore
# Secrets e credenziali — mai committare
*.credential
*.password
secrets/
.env
.env.*
# Log e output temporanei
logs/
*.log
*.swp
# 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/
# AI/strumenti locali
.claude/
# Graphify generated output (knowledge graph, AST/semantic cache)
graphify-out/
# Python bytecode
__pycache__/
*.pyc
# Python dev/test artifacts
.venv/
.coverage
cache/