Files
local-ci-cd-system/.gitignore
T
Simone 915a04b5c3 chore(gitignore): ignore graphify-out/ generated directory
graphify-out/ contains the knowledge graph, AST/semantic cache, and
HTML report — all regenerated by /graphify. No value in tracking them.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-23 19:50:14 +02:00

61 lines
821 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
cache/