Initial scaffold: CLAUDE.md modules, directory structure, .gitignore
This commit is contained in:
40
.gitignore
vendored
Normal file
40
.gitignore
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
# Secrets
|
||||
.env
|
||||
.env.*
|
||||
|
||||
# Backups (created by safety rules before overwrites)
|
||||
*.bak
|
||||
|
||||
# Python
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
*$py.class
|
||||
*.egg-info/
|
||||
dist/
|
||||
build/
|
||||
.venv/
|
||||
venv/
|
||||
|
||||
# Docker volumes (data managed by Docker, not Git)
|
||||
docker/volumes/
|
||||
|
||||
# Ignition runtime data (not project resources)
|
||||
ignition/data/
|
||||
*.gwbk
|
||||
|
||||
# Test results (generated output, not source)
|
||||
testing/results/
|
||||
|
||||
# IDE / Editor
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
*~
|
||||
|
||||
# OS
|
||||
.DS_Store
|
||||
Thumbs.db
|
||||
|
||||
# Node (if any tooling uses it)
|
||||
node_modules/
|
||||
Reference in New Issue
Block a user