Files
intercept/.gitignore
T
James Smith 5d87656909 chore: exclude design docs and purge sensitive history
Remove docs/plans/, docs/specs/, and docs/design/ from tracking and
add them to .gitignore. History also purged of instance/intercept.db
(user auth DB accidentally committed in January).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-07-05 14:25:04 +01:00

80 lines
1.0 KiB
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
env/
venv/
.venv/
ENV/
uv.lock
# Logs
*.log
pager_messages.log
# Local data
downloads/
pgdata/
# IDE
.idea/
.vscode/
*.swp
*.swo
*~
# OS
.DS_Store
Thumbs.db
# Distribution
dist/
build/
*.egg-info/
# Package manager lock files & DB files
uv.lock
*.db
*.sqlite3
intercept.db
# Instance folder (contains database with user data)
instance/
# Agent configs with real credentials (keep template only)
intercept_agent_*.cfg
!intercept_agent.cfg
# Temporary files
/tmp/
*.tmp
# Weather satellite runtime data (decoded images, samples, SatDump output)
data/weather_sat/
# Radiosonde runtime data (station config, logs)
data/radiosonde/
# SDR capture files (large IQ recordings)
data/subghz/captures/
# Env files
.env
.env.*
!.env.example
# Local utility scripts
reset-sdr.*
.superpowers/
docs/superpowers/
# Design and implementation docs (internal use only)
docs/plans/
docs/specs/
docs/design/
# Git worktrees
.worktrees/