Initial scaffold: CLAUDE.md modules, directory structure, .gitignore

This commit is contained in:
2026-03-17 08:29:14 -05:00
commit c1603c24b0
7 changed files with 1136 additions and 0 deletions

40
.gitignore vendored Normal file
View 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/