- .gitignore: ignore .env.* (keep .env.example) so local DB-credential profiles like .env.jetson-ingest can never be staged (audit S-1). - ingest_all.sh: batch-ingest helper writing to the Jetson DB via SSH tunnel. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
41 lines
501 B
Plaintext
41 lines
501 B
Plaintext
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*.pyo
|
|
*.pyd
|
|
*.so
|
|
|
|
# Virtual environments
|
|
.venv/
|
|
venv/
|
|
env/
|
|
|
|
# Distribution / packaging
|
|
dist/
|
|
build/
|
|
*.egg-info/
|
|
*.egg
|
|
|
|
# Environment secrets — NEVER commit
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Type-checker and linter caches
|
|
.mypy_cache/
|
|
.ruff_cache/
|
|
|
|
# Test caches
|
|
.pytest_cache/
|
|
.coverage
|
|
htmlcov/
|
|
|
|
# Editor / OS artefacts
|
|
.DS_Store
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
|
|
# Claude Code — settings.json IS committed (team-wide); only personal overrides ignored
|
|
.claude/settings.local.json
|