Files
giglez/.gitignore
T
leetcrypt 58ba021de1 test: add end-to-end UI verification harness for deploy artifact
Adds VERIFICATION.md + scripts/verify_ui.mjs, a Playwright-driven check of
the full user journey against the deployed SPA: page loads clean, Leaflet
map renders, a real DOM upload (.sub + GPS) returns a device match, and the
capture store increments. Grounded in real element IDs and live endpoints.

In-sandbox this session covered the code-correctness layers (L1-substance
parse->match->category, L3 save/load round-trip, L4 BinRAW + per-device
catalog category regressions). The runtime/transport layers still require a
live listening server and must be run from a normal shell:
  - L0            docker compose up --build, container healthy
  - L1 HTTP       curl/jq /health + static assets 200
  - L2            Playwright browser journey (scripts/verify_ui.mjs)
  - L3 restart    container up->down->up, capture count unchanged (volume)

Also ignores trained model binaries (models/*.onnx, *.pt) and the
verify-shots/ screenshot output.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-07-20 22:30:30 -07:00

116 lines
1.2 KiB
Plaintext

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# Virtual environments
venv/
env/
ENV/
env.bak/
venv.bak/
# IDEs
.vscode/
.idea/
*.swp
*.swo
*~
.DS_Store
# Database
*.db
*.sqlite
*.sqlite3
migrations/
# Logs
*.log
logs/
# Environment variables
.env
.env.local
.env.*.local
# Configuration
config/local.yaml
config/*.secret.*
# Data files
data/
captures/
*.sub
*.complex
*.urh
# Signature databases (large files)
signatures/flipper/flipperzero-firmware/
signatures/rtl433/rtl_433/
signatures/rtl433/rtl_433_tests/
signatures/urh/temp/
# Testing
.pytest_cache/
.coverage
htmlcov/
.tox/
.hypothesis/
# Jupyter
.ipynb_checkpoints/
*.ipynb
# Temp files
*.tmp
temp/
tmp/
# OS
Thumbs.db
# SD card exports
sdcard_exports/
# User uploads
uploads/
photos/
# Compiled firmware
*.bin
*.elf
*.hex
# Documentation builds
docs/_build/
site/
# External signature databases (git repositories)
signatures/flipperzero-firmware/
signatures/rtl_433/
# UI verification screenshots (scripts/verify_ui.mjs)
verify-shots/
# Trained model binaries (regenerated by training scripts, not versioned)
models/*.onnx
models/*.pt