Priority 1 (Critical): Database files removed from git tracking - Added **/.aphoria/db/ and **/.aphoria/wal/ to .gitignore - Removed 7 database files from dogfood/dbpool/.aphoria/db/ - Database files are runtime state (like target/), not source code - Prevents repository bloat and incorrect content type in git Priority 2 (Housekeeping): Dated documentation archived - Created archive/ structure with fixes/ and deprecated/ subdirectories - Moved SYSTEMATIC-FIXES-2026-02-10.md to archive/fixes/ - Moved SYSTEMATIC-FIXES-COMPLETE.md to archive/fixes/ - Moved PROJECT2-QUICKSTART-DEPRECATED.md to archive/deprecated/ - Moved PROJECT2-READY.md to archive/deprecated/ - Moved verify-project2-ready.sh to archive/deprecated/ - Created archive/README.md documenting archival policy These files are preserved for historical reference but no longer clutter the main dogfood directory. See archive/README.md for details. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
77 lines
887 B
Plaintext
77 lines
887 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/*
|
|
!.aphoria/claims.toml
|
|
|
|
# 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
|
|
**/.aphoria/db/
|
|
**/.aphoria/wal/
|