Files
epstein-db/.gitignore
⓪ηηωεε忧世 f30c25e79f Initial commit: Epstein Files Database project structure
- 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
2026-02-02 14:54:00 -06:00

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