mirror of
https://github.com/smittix/intercept.git
synced 2026-06-19 02:49:45 -07:00
d4652017f5
- meshcore pin >=2.3.0 (EventType.STATS_CORE floor); setup.sh derives optional packages from requirements.txt; Python 3.10 warning - agent-mode wifi clients proxy route + bare-array response handling - remove dead AIS/ACARS/VDL2 SPA wiring and orphaned partials/CSS - agent TLE download to data/tle/ (was littering repo root as gp.php) - gate deferred background init off under pytest (mock-pollution race) - complete Popen mocks (context manager protocol, communicate tuples) - real pipe fds in weather-sat decoder tests (fd 10/11 collision caused 10s SQLite stalls); satellite tests no longer rewrite data/satellites.py - register 'live' pytest marker, excluded by default - update stale test assertions to current APIs Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
78 lines
1.0 KiB
Plaintext
78 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/
|
|
|
|
# Downloaded TLE files (intercept_agent satellite predictor)
|
|
data/tle/
|
|
|
|
# SDR capture files (large IQ recordings)
|
|
data/subghz/captures/
|
|
|
|
# Env files
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
|
|
# Local utility scripts
|
|
reset-sdr.*
|
|
.superpowers/
|
|
docs/superpowers/
|
|
|
|
# Git worktrees
|
|
.worktrees/
|