- Add scans panel with finding details, verdict badges, and filters - Add corpus panel for managing knowledge sources - Add scan cache for API state management - Update sidebar navigation with new routes - Extend API types for scans and corpus endpoints - Add .aphoria/ to gitignore (contains project keys) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
74 lines
831 B
Plaintext
74 lines
831 B
Plaintext
# Rust
|
|
**/target/
|
|
**/*.rs.bk
|
|
Cargo.lock
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Environment
|
|
.env
|
|
.env.*
|
|
!.env.example
|
|
*.pem
|
|
*.key
|
|
credentials.json
|
|
service-account*.json
|
|
|
|
# Aphoria project data (contains keys)
|
|
.aphoria/
|
|
|
|
# Python virtual environments
|
|
.venv/
|
|
venv/
|
|
|
|
# Test/Coverage
|
|
*.profraw
|
|
*.profdata
|
|
/coverage/
|
|
/tarpaulin-report.html
|
|
|
|
# Build artifacts
|
|
*.o
|
|
*.a
|
|
*.so
|
|
*.dylib
|
|
|
|
# Code quality reports
|
|
.jscpd-report/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
__pycache__/
|
|
|
|
# Temp
|
|
tmp/
|
|
|
|
# Runtime data
|
|
data/
|
|
|
|
# Go binaries (examples)
|
|
sdk/go/examples/*/basic
|
|
sdk/go/examples/*/conflict
|
|
sdk/go/examples/*/skeptic
|
|
|
|
# Generated audio files
|
|
applications/pitch/audio/
|
|
|
|
# Build artifacts
|
|
applications/stemedb-dashboard/.next/
|
|
applications/video-renderer/out/
|
|
cmd/load-test/load-test
|
|
cmd/demo-seed/demo-seed
|
|
*.sst
|
|
*.mp4
|