- PostgreSQL schema for documents, entities, relationships, cross-refs - Neo4j schema for graph relationships - TypeScript extraction pipeline (OCR, NER, deduplication) - Go API server (Fiber) with full REST endpoints - React + Tailwind frontend with network visualization - Pattern finder agent for connection discovery - Docker compose for databases (Postgres, Neo4j, Typesense) - Cross-reference matching for PPP loans, FEC, federal grants
67 lines
584 B
Plaintext
67 lines
584 B
Plaintext
# Data sources - too large for git
|
|
DataSources/
|
|
|
|
# Build outputs
|
|
dist/
|
|
build/
|
|
.next/
|
|
out/
|
|
|
|
# Dependencies
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Environment
|
|
.env
|
|
.env.local
|
|
.env.*.local
|
|
|
|
# Go
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
bin/
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
.venv/
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
|
|
# IDE
|
|
.idea/
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Database files (large, generated)
|
|
*.db
|
|
*.sqlite
|
|
*.sqlite3
|
|
|
|
# Logs
|
|
*.log
|
|
logs/
|
|
|
|
# Temporary files
|
|
tmp/
|
|
temp/
|
|
.cache/
|
|
|
|
# Generated data (can be recreated)
|
|
data/processed/
|
|
data/embeddings/
|
|
data/exports/
|
|
|
|
# Keep config examples
|
|
!*.example
|